-
24 Sep 2010 11:57 AM #1
CheckboxGroup and RadioGroup don't collect correctly
CheckboxGroup and RadioGroup don't collect correctly
CheckboxGroup (and RadioGroup, which extends it) collects it's children via:
in onRender. This is problematic, because it collects any Ext form-type at any level. I was making a custom widget that contained an input box on the same line as a radio/checkbox, and noticing that everything was getting becoming 'false' when trying to set the value of the radios.Code:var fields = this.panel.findBy(function(c){ return c.isFormField; }, this);
My quick fix was just to add "isFormField: false" to the configuration options of the non-radio widgets.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
CheckBoxGroup / RadioGroup
By ValterBorges in forum Ext 3.x: Help & DiscussionReplies: 6Last Post: 17 Jul 2009, 6:37 PM -
Problem with checkboxgroup and radiogroup
By patrosmania in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 19 Jun 2009, 6:23 AM -
[FIXED][3.x/2.x] CheckboxGroup/RadioGroup does not clean up after itself
By mystix in forum Ext 3.x: BugsReplies: 1Last Post: 11 Jun 2009, 2:16 AM -
Cannot hide the label of a RadioGroup or CheckboxGroup
By swaffoja in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 9 Oct 2008, 8:59 AM


Reply With Quote