Hi,
We are currently using SmartGWT build 6.0 dated 31/12/2016.
In our code, we do certain things based on focus!
For this, we do a simple check:
However, when using IE, the above condition (listGrid.containsFocus()) returns false, whereas it returns true for Firefox/Chrome!
Any reasons why it would behave differently for different browsers?
We are currently using SmartGWT build 6.0 dated 31/12/2016.
In our code, we do certain things based on focus!
For this, we do a simple check:
Code:
addEditorExitHandler(new EditorExitHandler() {
@Override
public void onEditorExit(EditorExitEvent editorExitEvent) {
[B]if (!listGrid.containsFocus()) {[/B]
new Timer() {
@Override
public void run() {
updateItemOnExit();
}
}.schedule(IntegerConst.SCHDULE_TIME);
}
}
});
Any reasons why it would behave differently for different browsers?
Comment