summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DataTable.vue
diff options
context:
space:
mode:
authorUdo Walter2019-02-22 04:43:45 +0100
committerUdo Walter2019-02-22 04:43:45 +0100
commitc596d15adbd7b28b3f472321b3aecc2bc3508ffc (patch)
tree7fc27ba298cfa7136256df408037e27053ea349c /webapp/src/components/DataTable.vue
parent[webapp] implement time slicing loop and use it to search in the datatable (diff)
downloadbas-c596d15adbd7b28b3f472321b3aecc2bc3508ffc.tar.gz
bas-c596d15adbd7b28b3f472321b3aecc2bc3508ffc.tar.xz
bas-c596d15adbd7b28b3f472321b3aecc2bc3508ffc.zip
[webapp/datatable] fix bug: search options (regex etc) did not trigger filtering of the rows
Diffstat (limited to 'webapp/src/components/DataTable.vue')
-rw-r--r--webapp/src/components/DataTable.vue9
1 files changed, 9 insertions, 0 deletions
diff --git a/webapp/src/components/DataTable.vue b/webapp/src/components/DataTable.vue
index 037f689..90d077c 100644
--- a/webapp/src/components/DataTable.vue
+++ b/webapp/src/components/DataTable.vue
@@ -262,6 +262,15 @@ export default {
sortedRows () {
this.filterRows()
},
+ regex () {
+ this.filterRows()
+ },
+ caseSensitive () {
+ this.filterRows()
+ },
+ onlyShowSelected () {
+ this.filterRows()
+ },
search: {
deep: true,
handler () {