Search code examples
extjscheckboxextjs4

ExtJS 4, resetting checkboxgroup


Could you help me please to reset (uncheck) all checkboxes in checkboxgroup. I'd like to know if there's a one command to do it, not using a loop.

e.g. Ext.getCmp('faqsModelsCheckboxGroup').reset() - doesn't work.


Solution

  • I've found solution:

    Ext.getCmp('faqsModelsCheckboxGroup').setValue(false) enter image description here