diff --git a/ayanova/src/components/data-table-filter-control.vue b/ayanova/src/components/data-table-filter-control.vue
index 4be87c5c..96a811de 100644
--- a/ayanova/src/components/data-table-filter-control.vue
+++ b/ayanova/src/components/data-table-filter-control.vue
@@ -305,8 +305,13 @@
{{
$ay.t("Cancel")
}}
+
+ {{
+ $ay.t("ClearAll")
+ }}
+
{{
- $ay.t("OK")
+ $ay.t("Save")
}}
@@ -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;