-
1. Re: manipulating individual checkbox in a checkboxgroup
Veena_07 Nov 16, 2012 4:25 AM (in response to Veena_07)Hey Guys
I got the solution
Reference : http://stackoverflow.com/questions/3523733/in-extjs-how-can-you-loop-through-menu-items
For my requirement
if check is my checkbox group
check[0].items.each(function(i) {
var label = i.fieldLabel;
if (label == "second"
|| label == "third") {
i.disable();
}
});
will disable my second and third checkbox where "second" is the fieldLabel for my second checkbox and "third" for my third checkbox
Thanks
Veena

