What is the best way to hide a field on a form when multiEditable: false.
What is the best way to hide a field on a form when multiEditable: false.
Turlock Irrigation District
Posts: 4Questions: 3Answers: 0
in Editor
What is the best way to hide a field on a form when multiEditable is set to false for the specific field? The field should not display at all if it is not editable.
This discussion has been closed.
Answers
The following worked for me.
editor
.on('open', function (e, type) {
debugger;
var shortName = this.field('ShortName');
var description = this.field('Description');