Fix UX items related to Notifications

This commit is contained in:
Marliana Lara
2017-07-27 15:31:39 -04:00
parent 36f49467c6
commit c0f01e671b
6 changed files with 51 additions and 3 deletions

View File

@@ -1287,6 +1287,7 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
html += "value=\"" + field.options[i].value + "\" ";
html += "ng-model=\"" + fld + "\" ";
html += (field.ngChange) ? this.attr(field, 'ngChange') : "";
html += (field.ngClick) ? this.attr(field, 'ngClick') : "";
html += (field.ngDisabled) ? `ng-disabled="${field.ngDisabled}"` : "";
html += (field.readonly) ? "disabled " : "";
html += (field.required) ? "required " : "";