Hi,
I am using smartgwtpower 3.1.
I have an editable grid with a datasource where I want to manually process changed values without having them added to the datasource. Therefore I tried:
But after that the inline editor is still showing up. Is there a way to hide it?
Looking forward to hear from you
I am using smartgwtpower 3.1.
I have an editable grid with a datasource where I want to manually process changed values without having them added to the datasource. Therefore I tried:
Code:
grid.addRowEditorExitHandler(new RowEditorExitHandler() {
@Override
public void onRowEditorExit(RowEditorExitEvent event) {
event.cancel();
// do some stuff
}
});
Looking forward to hear from you
Comment