Sebastian Boccardi Messages: 47 Registered: September 2012 Location: Montevideo
Member
When i do this:
protected void execAction() throws ProcessingException {
for (ITableRow r : getSelectedRows()) {
deleteRow(r);
}
storeStateInternal(); <------- THIS
}
I had to add the line to call the store of the form, if i don´t do it that way store is not called after deleting rows and clicking OK. Auto discard is on.
Shouldn´t the form be observing the table for any change?