ListGrid EditorExitEvent is not being called if user modify the cell and then just click on the "Save" LinkItem in the toolbar. I tried to add FocusChangedHandler, but it is also not working :
Any suggestions ? Is there a way to call EditorExitEvent from the Save method ?
Thanks.
Code:
grid.addFocusChangedHandler(new FocusChangedHandler()
{
public void onFocusChanged(FocusChangedEvent event)
{
if(!event.getHasFocus())
{
SC.say("Lost Focus");
}
}
});
Thanks.
Comment