salix/client/ticket/src/tracking/edit/index.html

24 lines
645 B
HTML
Raw Normal View History

2018-04-04 13:02:01 +00:00
<mg-ajax path="/ticket/api/TicketTrackings" options="vnPost"></mg-ajax>
2018-03-27 12:26:20 +00:00
<vn-watcher
vn-id="watcher"
data="$ctrl.ticket"
form="form"
save="post">
</vn-watcher>
<form name="form" ng-submit="$ctrl.onSubmit()">
<vn-card pad-large>
<vn-title>New state</vn-title>
<vn-horizontal>
2018-04-04 13:02:01 +00:00
<vn-autocomplete
vn-one
2018-03-27 12:26:20 +00:00
field="$ctrl.ticket.stateFk"
url="/ticket/api/States"
label="State"
vn-focus>
</vn-autocomplete>
</vn-horizontal>
</vn-card>
<vn-button-bar>
<vn-submit label="Save"></vn-submit>
</vn-button-bar>
</form>