I have a three custom filters working on change select.
But because of the way I use button on click all the filter on single method.
Right now setting the custom filter and setting the page results in two calls to the server and it's causing me problems.
How can I set the page and the custom filter in a single operation so only one call is made ?
filterData() {
Event.$emit('vue-tables.filter::category', this.selectCategory)
Event.$emit('vue-tables.filter::date', this.selectDate)
Event.$emit('vue-tables.filter::type', this.selectType)
},
How to do the above so only one call is made to the server ?