AC-351 Latest changes.

This commit is contained in:
chouseknecht
2013-08-30 14:15:54 -04:00
parent 67ae8effa4
commit 51333c0a8a
7 changed files with 131 additions and 111 deletions

View File

@@ -321,8 +321,8 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
html += (field.ngChange) ? Attr(field,'ngChange') : "";
html += (field.id) ? Attr(field,'id') : "";
html += (field['class']) ? Attr(field,'class') : "";
html += Attr(field,'trueValue');
html += Attr(field,'falseValue');
html += (field.trueValue !== undefined) ? Attr(field,'trueValue') : "";
html += (field.falseValue !== undefined) ? Attr(field,'falseValue') : "";
html += (field.checked) ? "checked " : "";
html += (field.readonly) ? "disabled " : "";
html += " > " + field.label + "\n";