Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

listgrid hide inline editor

$
0
0
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:

Code:

grid.addRowEditorExitHandler(new RowEditorExitHandler() {
        @Override
        public void onRowEditorExit(RowEditorExitEvent event) {
                event.cancel();
                // do some stuff
        }
});

But after that the inline editor is still showing up. Is there a way to hide it?

Looking forward to hear from you

Viewing all articles
Browse latest Browse all 4756

Trending Articles