2018-07-16 06:00:04 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="ClientContacts"
|
2018-08-30 06:50:03 +00:00
|
|
|
fields="['id', 'name', 'phone', 'clientFk']"
|
2020-03-17 10:17:50 +00:00
|
|
|
link="{clientFk: $ctrl.$params.id}"
|
2018-12-19 14:59:35 +00:00
|
|
|
data="contacts"
|
|
|
|
auto-load="true">
|
2018-07-16 06:00:04 +00:00
|
|
|
</vn-crud-model>
|
2018-08-02 07:49:00 +00:00
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
|
|
|
data="contacts"
|
|
|
|
form="form">
|
|
|
|
</vn-watcher>
|
2019-11-10 10:08:44 +00:00
|
|
|
<form name="form" ng-submit="$ctrl.onSubmit()" class="vn-w-md">
|
2019-10-04 22:16:57 +00:00
|
|
|
<vn-card class="vn-pa-lg">
|
2018-07-16 06:00:04 +00:00
|
|
|
<vn-horizontal ng-repeat="contact in contacts">
|
2018-06-26 07:41:27 +00:00
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
label="Name"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="contact.name"
|
2019-10-11 15:38:04 +00:00
|
|
|
rule="ClientContact">
|
2018-06-26 07:41:27 +00:00
|
|
|
</vn-textfield>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
label="Phone"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="contact.phone"
|
2019-10-11 15:38:04 +00:00
|
|
|
rule="ClientContact"
|
2019-10-09 22:47:29 +00:00
|
|
|
vn-focus>
|
2018-06-26 07:41:27 +00:00
|
|
|
</vn-textfield>
|
2018-08-30 06:50:03 +00:00
|
|
|
<vn-none>
|
2019-02-21 10:40:27 +00:00
|
|
|
<vn-icon-button
|
2018-06-26 07:41:27 +00:00
|
|
|
vn-tooltip="Remove contact"
|
2018-12-11 07:50:54 +00:00
|
|
|
icon="delete"
|
2019-10-24 08:17:32 +00:00
|
|
|
tabindex="-1"
|
2018-08-30 06:50:03 +00:00
|
|
|
ng-click="model.remove($index)">
|
2019-02-21 10:40:27 +00:00
|
|
|
</vn-icon-button>
|
2018-08-30 06:50:03 +00:00
|
|
|
</vn-none>
|
2018-06-26 07:41:27 +00:00
|
|
|
</vn-horizontal>
|
|
|
|
<vn-one>
|
|
|
|
<vn-icon-button
|
|
|
|
vn-bind="+"
|
|
|
|
vn-tooltip="Add contact"
|
|
|
|
icon="add_circle"
|
|
|
|
ng-click="$ctrl.add()">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-one>
|
|
|
|
</vn-card>
|
|
|
|
<vn-button-bar>
|
2020-12-13 13:57:42 +00:00
|
|
|
<vn-submit
|
2020-12-15 15:51:36 +00:00
|
|
|
disabled="!watcher.dataChanged()"
|
2020-12-13 13:57:42 +00:00
|
|
|
label="Save">
|
|
|
|
</vn-submit>
|
2020-12-15 15:51:36 +00:00
|
|
|
<!-- # #2680 Undo changes button bugs -->
|
|
|
|
<!-- <vn-button
|
|
|
|
class="cancel"
|
|
|
|
label="Undo changes"
|
|
|
|
disabled="!watcher.dataChanged()"
|
|
|
|
ng-click="watcher.loadOriginalData()">
|
|
|
|
</vn-button> -->
|
2018-06-26 07:41:27 +00:00
|
|
|
</vn-button-bar>
|
|
|
|
</form>
|