-
23 Mar 2010 1:59 AM #11
I am getting an error on the store if I use the extension without renderTo. I get the error when I close a form. Line 662
I changed this section to the following:
It fixes the problem, not sure if is the best thing to do though.Code:addCheckboxes: function() { // Add new checkboxes from store if(this.store){ Ext.each(this.store.data.items, function(rec) { var checkbox = new Ext.form.Checkbox({name: rec.data.id + '-checkbox', boxLabel: rec.data[this.displayField], inputValue: rec.data[this.valueField], checked: (rec.checked ? rec.checked : false)}); var col = this.cbgroup.panel.items.get(0); this.cbgroup.items.add(checkbox); col.add(checkbox); this.cbgroup.panel.doLayout(); }, this); } },
Marty
-
23 Mar 2010 4:17 AM #12
also, is there away to handle longer lists, seems to just keep going, longer lists run right off the page.
Thanks, Marty
-
23 Mar 2010 8:16 AM #13
-
23 Mar 2010 8:19 AM #14
-
23 Mar 2010 9:13 AM #15
-
23 Mar 2010 3:24 PM #16
oh happy day!
oh happy day!
Hi Clint, You pointed me to "my" problem! I cleared up the json response and voila ... it works!

thank you so much !
Mark
-
20 Apr 2010 9:33 PM #17
Hi, How can we have a "Select All" option?
-
22 Apr 2010 2:06 AM #18
Thanks for this super plugin.
But is the maxHeight working for you? For me not... It loads the whole list, with all 100 entries...
Do you have any idea how to correct this? I am using Ext 3.1.1
Thank you very much
-
22 Apr 2010 8:05 AM #19
-
22 Apr 2010 1:53 PM #20
This might be a dumb question, but how do I add a callback to a selection event so I can respond to checks and unchecks as the happen?


Reply With Quote

