<mg-ajax path="Shelvings/{{patch.params.id}}" options="vnPatch"></mg-ajax>
<vn-watcher
    vn-id="watcher"
    data="$ctrl.shelving"
    form="form"
    save="patch">
</vn-watcher>
<form name="form" ng-submit="watcher.submit()" class="vn-w-md">
    <vn-card class="vn-pa-lg">
        <vn-vertical>
            <vn-horizontal>
                <vn-textfield
                    label="Code" 
                    ng-model="$ctrl.shelving.code"
                    rule
                    vn-focus>
                </vn-textfield>
                <vn-autocomplete
                    vn-one
                    url="Parkings"
                    label="Parking"
                    show-field="code"
                    value-field="id"
                    ng-model="$ctrl.shelving.parkingFk">
                </vn-autocomplete>
            </vn-horizontal>
            <vn-horizontal>
                <vn-input-number vn-one
                    label="Priority"
                    ng-model="$ctrl.shelving.priority"
                    rule>
                </vn-input-number>
                <vn-check
                    label="Recyclable" 
                    ng-model="$ctrl.shelving.isRecyclable">
                </vn-check>
            </vn-horizontal>
        </vn-vertical>
    </vn-card>
    <vn-button-bar>
        <vn-submit
            disabled="!watcher.dataChanged()"
            label="Save">
        </vn-submit>
        <vn-button
            class="cancel"
            label="Undo changes"
            disabled="!watcher.dataChanged()"
            ng-click="watcher.loadOriginalData()">
        </vn-button>
    </vn-button-bar>
</form>