This leads on from my previous question.
I initialize a grid with a CheckBox Selection Model, however when I reconfigure the grid the Check Box Selection Model visaully dissapears.
What I want to do is dynamically add a CheckBox Selection Model to a grid after reconfiguring the grids columns, and visually display it.
I have tried something like this:
var sm = new Ext.selection.CheckboxModel();
grid.selModel = sm;
grid.doLayout();