codeTable.setWidget( codeTableRow++,
codeTableCol--,
resultField );
//panel.setWidget(r++, 0, codeTable);
ScrollPanel codePanel = new ScrollPanel();
codePanel.add( codeTable );
tPanel.add( codePanel,
"Custom Code" );
DirtyableFlexTable functionTable = new DirtyableFlexTable();
functionTable.setWidget( 0,
0,
new HTML( "<div class='form-field'>Function:</div>" ) );
final TextBox functionField = new TextBox();
functionField.setTitle( "function code" );
functionField.setText( getFromAccumulatePattern().getFunction() );
functionField.setEnabled( !this.readOnly );
functionTable.setWidget( 0,
1,
functionField );
// panel.setWidget(r++, 0, functionTable);
ScrollPanel functionPanel = new ScrollPanel();
functionPanel.add( functionTable );
tPanel.add( functionPanel,
"Function" );
ChangeHandler changehandler = new ChangeHandler() {