Posted 6 May 2019, 3:25 pm EST
When I edit the grid in mobile phone the one screen keyboard pops up and disappears immediately. This issue seems to be because of resize event canceling the edits.
I was able to fix the issue in CustomEditors by commenting the resize handler
// close editor when user resizes the window // this._ctl.addEventListener(window, 'resize', () => { // if (this._ctl.containsFocus()) { // this._closeEditor(true); // this._grid.focus(); // } // });
How can I do the same for native grid editor?