47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<vn-dialog class="edit"
|
|
vn-id="postcodeDialog"
|
|
on-open="$ctrl.onOpen()"
|
|
on-response="$ctrl.onResponse(response)">
|
|
<tpl-body>
|
|
<h5 pad-small-v translate>New postcode</h5>
|
|
<p translate>Please, ensure you put the correct data!</p>
|
|
<vn-horizontal>
|
|
<vn-textfield vn-one vn-focus vn-id="postcode"
|
|
label="Postcode"
|
|
model="$ctrl.data.code"
|
|
required="true">
|
|
</vn-textfield>
|
|
<vn-autocomplete vn-one
|
|
label="City"
|
|
url="/api/Towns/location"
|
|
show-field="name"
|
|
value-field="id"
|
|
field="$ctrl.data.townFk"
|
|
selection="$ctrl.townSelection"
|
|
required="true">
|
|
</vn-autocomplete>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-autocomplete vn-one
|
|
disabled="true"
|
|
field="$ctrl.data.provinceFk"
|
|
url="/api/Provinces"
|
|
show-field="name"
|
|
value-field="id"
|
|
label="Province">
|
|
</vn-autocomplete>
|
|
<vn-autocomplete vn-one
|
|
disabled="true"
|
|
field="$ctrl.data.countryFk"
|
|
url="/api/Countries"
|
|
show-field="country"
|
|
value-field="id"
|
|
label="Country">
|
|
</vn-autocomplete>
|
|
</vn-horizontal>
|
|
</tpl-body>
|
|
<tpl-buttons>
|
|
<input type="button" response="CANCEL" translate-attr="{value: 'Cancel'}"/>
|
|
<button response="ACCEPT" translate>Save</button>
|
|
</tpl-buttons>
|
|
</vn-dialog> |