-
14 Feb 2008 5:44 AM #1
[2.0??] Grid with two plugins
[2.0??] Grid with two plugins
Hello, I have a Grid with 2 Checkbox columns, but i don't know how to set correctly the property plugins of the grid.I tried by:
plugins:[{checkColumn},{checkColumn2}], but it doesn't work:checkColumn and checkColumn2 are 2 variables of Ext.grid.CheckColumn
-
15 Feb 2008 9:26 AM #2
I think it should just be a simple array of values, not an array of objects:
[checkColumn,checkColumn2]
-
15 Feb 2008 9:55 AM #3
Devnull is correct though:
Multiple plugins
One pluginPHP Code:plugins:[this.checkColumn, this.filters],//object or array of objects
PHP Code:plugins: filters,//example with just one plugin
I don't know if you saw this example, but I load multiple plugins into the grid there. I'll be posting an update with bug fixes, etc. to that thread in next day or two.


Reply With Quote