Hi,
I have come across an issue where when I am using selectable: "multiple, cell", in combination with incell editing the editor is not always removed correctly.
If the incell editor is being displayed and then the user clicks either a single cell or off the grid the editor is correctly removed.
However if the user selects multiple cells then the editor loses focus, but is not removed. This leaves it on the screen.
I have been able to clear the editor by adding a change event to the grid:
I am a little wary of my workaround as currently have a different issue with manually calling closeCell()
See: http://www.telerik.com/forums/grid-not-activeelement-when-selecting-a-single-cell-when-using-multiple-cell-select
Is this a bug?
Is my workaround correct and likely safe?
Thanks
Euan
I have come across an issue where when I am using selectable: "multiple, cell", in combination with incell editing the editor is not always removed correctly.
If the incell editor is being displayed and then the user clicks either a single cell or off the grid the editor is correctly removed.
However if the user selects multiple cells then the editor loses focus, but is not removed. This leaves it on the screen.
I have been able to clear the editor by adding a change event to the grid:
change: function (e) {
this.closeCell();
},
I am a little wary of my workaround as currently have a different issue with manually calling closeCell()
See: http://www.telerik.com/forums/grid-not-activeelement-when-selecting-a-single-cell-when-using-multiple-cell-select
Is this a bug?
Is my workaround correct and likely safe?
Thanks
Euan