I have a grid with Ext.grid.plugin.RowWidget. When grid store reloaded I expect all row body components to be recreated, but they remains.
Here is simple fiddle, to repeat the bug:
- Expand first row;
- Change value of any textfield;
- Click 'Reload' button;
- Expand first row.
I expect new Ext.CharacterPanel
instance with empty fields as row body component...
It's a huge bug imo.
As temporary solution I can reset row body component on expandbody
event or with onWidgetAttach
method, but it seems like bad solution for me.