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

24 lines
681 B
HTML
Raw Normal View History

<mg-ajax path="/ticket/api/TicketTrackings/changeState" 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
field="$ctrl.ticket.stateFk"
url="/ticket/api/States"
label="State"
vn-focus>
</vn-autocomplete>
2018-03-27 12:26:20 +00:00
</vn-horizontal>
</vn-card>
<vn-button-bar>
<vn-submit label="Save"></vn-submit>
</vn-button-bar>
</form>