Added save function
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
e6304d026c
commit
5c34d2a540
|
@ -16,14 +16,13 @@
|
||||||
<vn-button icon="add"
|
<vn-button icon="add"
|
||||||
ng-click="$broadcast('addRow')"
|
ng-click="$broadcast('addRow')"
|
||||||
vn-tooltip="Add new row">
|
vn-tooltip="Add new row">
|
||||||
<prepend>a</prepend>
|
|
||||||
</vn-button>
|
</vn-button>
|
||||||
<vn-button icon="delete"
|
<vn-button icon="delete"
|
||||||
ng-click="$broadcast('addRow')"
|
ng-click="$broadcast('addRow')"
|
||||||
vn-tooltip="Remove selected rows">
|
vn-tooltip="Remove selected rows">
|
||||||
</vn-button>
|
</vn-button>
|
||||||
<vn-button icon="save"
|
<vn-button icon="save"
|
||||||
ng-click="$broadcast('addRow')"
|
ng-click="$ctrl.save()"
|
||||||
vn-tooltip="Save data">
|
vn-tooltip="Save data">
|
||||||
</vn-button>
|
</vn-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -32,6 +32,11 @@ export default class SmartTableMenu extends Component {
|
||||||
body.appendChild($clone[0]);
|
body.appendChild($clone[0]);
|
||||||
}, null, 'body');
|
}, null, 'body');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
save() {
|
||||||
|
this.model.save()
|
||||||
|
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SmartTableMenu.$inject = ['$element', '$scope', '$transclude'];
|
SmartTableMenu.$inject = ['$element', '$scope', '$transclude'];
|
||||||
|
|
Loading…
Reference in New Issue