When setting clicksToEdit : 2 option to edit a cell using grid edit plugin, the textfield sets focus properly. When dragging or resizing the modal window the textfield needs to remove the focus.
The issue is that the textfield is not blurred.
Here's a screenshot of the issue:
plugins: [
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit : 2
})
],
I have attached the code in JSFiddle.
Steps to reproduce the issue:
- double click to edit the name.
- resize the panel from right bottom.Now the
textboxhave a focus and position oftextboxis changed.
