I have a Ext.form.CheckboxGroup with multiple items of Ext.form.Checkbox.
Is it possible to cycle through each item of the Ext.form.CheckboxGroup?
I have tried the following to no avail:
for ( var i in Ext.getCmp('product_category_group').items.items) {
console.log(i.getId());
}
Any advice appreciated, thanks.