checkbox - ExtJS: Preventing Checkboxes inheriting the hideLabel attribute of their parent CheckboxGroup -


i trying display checkboxes within checkboxgroups. keep them lined other fields in form, want disable group's fieldlabel, while keeping each checkbox's individual fieldlabel. however, if set hidelabel true checkboxgroup, field labels individual checkboxes disappear also, if explicitly set hidelabel false.

is going possible? help.

edit: requested, code:

config = {     xtype: 'checkboxgroup',     hidelabel: true,     columns: 1,     items: [{         fieldlabel: 'item 1',          hidelabel: false     }, {         fieldlabel: 'item 2',          hidelabel: false     }] }; 

are defining boxlabel on checkboxes? should define boxlabels on combos , set hidelabel true on checkboxgroup.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -