I\'m trying to disable all clickable, editable components on my panel.
Calling panel.disable() grays it out, but buttons are still clickable.
The same r
Assuming that you used a FormPanel you can use this method to get form:
getForm() // see http://docs.sencha.com/ext-js/4-0/#!/api/Ext.form.Panel-method-getForm
This will return the Ext.form.Basic object. From here you have access to all the fields on this form with method:
getFields() // see http://docs.sencha.com/ext-js/4-0/#!/api/Ext.form.Basic-method-getFields
Now cou can iterate through the field and disable them. Notice also the method applyToFields() where you can pass your object. See API information: http://docs.sencha.com/ext-js/4-0/#!/api/Ext.form.Basic-method-applyToFields
Good luck!