mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
74e2dbe3f8
Add example for use of the mct-toolbar directive, WTD-684.
22 lines
399 B
HTML
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> |