-
8 Nov 2011 12:32 AM #1
Calling reconfigure on a grid with CheckBox model causes additional checkbox columns
Calling reconfigure on a grid with CheckBox model causes additional checkbox columns
REQUIRED INFORMATION
Ext version tested:- Ext 4.0.7
- Ext 4.1-PR1
- FF3.6
- Calling reconfigure on a grid with CheckBox model causes additional checkbox columns
- Create a Grid with the Checkbox Selection Model
- Call reconfigure on the grid
- I've tested against the grid-plugin example
- Reconfiguration should occur while retaining the checkbox column
- An additional checkbox column is added per reconfigure call
Screenshot or Video:Additional CSS used:- only default ext-all.css
- WinXP
Last edited by mitchellsimoens; 8 Nov 2011 at 1:04 PM. Reason: Add Ext 4.1-PR1 as another version tested
-
8 Nov 2011 1:03 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
Looks like it is still happening in 4.1-PR1. Will get this reported!
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
7 Feb 2012 5:23 AM #3
Hi,
An alternative is to call the reconfigure method with the parameter columns :
Hope it helps.PHP Code:var columns = [
...
]
var grid = Ext.create('Ext.grid.Panel', {
...
columns: columns
...
});
...
grid.reconfigure(store, columns);
Cheers.
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJSIV-4424
in
4.1.


Reply With Quote