Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save betobaz/1a38f4076e18dd99c6af to your computer and use it in GitHub Desktop.
Save betobaz/1a38f4076e18dd99c6af to your computer and use it in GitHub Desktop.
SugarCRM: Sidecar: Set readonly to field
({
initialize: function(){
this._super("initialize", arguments);
var field = this.getField('field_name');
field.setMode('readonly');
field.setMode('edit');
field.setMode('detail');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment