Skip to content

Instantly share code, notes, and snippets.

@joariasl
Last active August 29, 2015 14:17
Show Gist options
  • Save joariasl/023ba550c19fe506c49e to your computer and use it in GitHub Desktop.
Save joariasl/023ba550c19fe506c49e to your computer and use it in GitHub Desktop.
/**
* All field in a FormPanel to readOnly
* @param {Ext.form.FormPanel} form
* @param {boolean} readOnly
* @returns {void}
*/
formReadOnlyAllFields: function(form, readOnly){
Ext.suspendLayouts();
form.getForm().getFields().each(function(field) {
field.setReadOnly(readOnly);
});
Ext.resumeLayouts();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment