This commit is contained in:
@@ -305,8 +305,13 @@
|
|||||||
<v-btn text @click="close()" color="primary">{{
|
<v-btn text @click="close()" color="primary">{{
|
||||||
$ay.t("Cancel")
|
$ay.t("Cancel")
|
||||||
}}</v-btn>
|
}}</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">{{
|
<v-btn text @click="saveAndExit()" color="primary">{{
|
||||||
$ay.t("OK")
|
$ay.t("Save")
|
||||||
}}</v-btn>
|
}}</v-btn>
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
</v-card>
|
</v-card>
|
||||||
@@ -501,6 +506,10 @@ export default {
|
|||||||
dirty: true
|
dirty: true
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
clearAllFilterConditions() {
|
||||||
|
this.editItem.filter.items.splice(0, this.editItem.filter.items.length);
|
||||||
|
this.editItem.filter.any=false;
|
||||||
|
},
|
||||||
async open(tableColumnData) {
|
async open(tableColumnData) {
|
||||||
this.tableColumnData = tableColumnData;
|
this.tableColumnData = tableColumnData;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user