openmct/example/forms/res/templates/exampleForm.html
Victor Woeltjen 74e2dbe3f8 [Forms] Add example for toolbar
Add example for use of the mct-toolbar directive,
WTD-684.
2015-01-15 15:36:07 -08:00

22 lines
399 B
HTML

<div ng-controller="ExampleFormController">
<mct-toolbar structure="toolbar" ng-model="state" name="aToolbar">
</mct-toolbar>
<mct-form structure="form" ng-model="state" name="aForm">
</mct-form>
<ul>
<li>Dirty: {{aForm.$dirty}}</li>
<li>Valid: {{aForm.$valid}}</li>
</ul>
<pre>
<textarea>
{{state | json}}
</textarea>
</pre>
</div>