1

I have checkboxes created in Ext JS. When defined with 'id' attribute, I'm able to check whether its checked or not, but this is resulting in a different functionality failure.

I want to check whether the checkbox is checked or not when those checkboxes are created using 'name' attribute instead of 'id' attribute.

Please help me

Rakesh
  • 33
  • 5

1 Answers1

0

You can use ref attribute instead of id - http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.Component-cfg-ref

  • Thanks, I've figured it out with the help of some senior colleagues. Yes, the ref attribute worked perfectly :) – Rakesh Aug 27 '15 at 08:44