Ext.ux.touch.grid
Ext.ux.touch.grid copied to clipboard
Hiding/showing columns breaks sort arrows
- Load the "mvc" example.
- Click the first "Grid" tab.
- Click one of the headers, and the sort arrow will appear.
- Run this in the console:
var grid = Ext.ComponentQuery.query('grid-grid')[0];
grid.hideColumn(0);
grid.showColumn(0);
- The sort arrows are now gone. Even if you click the headers, they won't reappear.
I think this is because the column element is cached, but the header is re-drawn with new elements.