Hello,
I am having a fight with the FormTable and theSubmit that is on it. This
is the code I am using in my class that extends FormTable:
public ObjectFormTable () {
<snip>
setupColumns();//adding FieldColumns here
getForm().add( new Submit("save", getMessage("button_submit"), this,
"onSave"));
<snip>
}
I also have the method onSave:
public boolean onSave() {
<snip>
}
When I set a breakpoint in onSave, it's not hit. Any other breakpoint
works so I can't blame the debugger... Why does the Submit button not
trigger the onSave method?? Do I need to do anything special when using
a FormTable?
Cheers,
WarnerJan Veldhuis