openmct/platform/forms/res/templates/controls/textfield.html
Victor Woeltjen 4b51c37067 [Forms] Allow textfield size to be specified
Allow specification of size per-textfield from toolbar
structure definitions; WTD-684.
2015-01-15 15:10:57 -08:00

11 lines
308 B
HTML

<span class='form-control shell'>
<span class='field control'>
<input type="text"
ng-required="ngRequired"
ng-model="ngModel[field]"
ng-pattern="ngPattern"
size="{{structure.size}}"
name="mctControl">
</span>
</span>