This commit is contained in:
2021-02-03 21:52:29 +00:00
parent 1b36ce360c
commit c1f07ad0fc

View File

@@ -305,8 +305,13 @@
<v-btn text @click="close()" color="primary">{{
$ay.t("Cancel")
}}</v-btn>
<v-spacer />
<v-btn text @click="clearAllFilterConditions()" color="primary">{{
$ay.t("ClearAll")
}}</v-btn>
<v-spacer />
<v-btn text @click="saveAndExit()" color="primary">{{
$ay.t("OK")
$ay.t("Save")
}}</v-btn>
</v-card-actions>
</v-card>
@@ -501,6 +506,10 @@ export default {
dirty: true
});
},
clearAllFilterConditions() {
this.editItem.filter.items.splice(0, this.editItem.filter.items.length);
this.editItem.filter.any=false;
},
async open(tableColumnData) {
this.tableColumnData = tableColumnData;