Hello everyone.
I have a datagrid with filters. How to get the value inserted by keyboard with a function?
for example. I have a table with products, I go in the column name of filter and i digit: Pizza
How I get the word 'Pizza' by function?
with this it:this.$refs.overviewgrid.getFilterUIInfo()
returns getFilterUIInfo is not a function
If i use:
actionComplete(args) {
if (args.action === 'filter') {
// const prova = this.$refs.overviewgrid.getFilterUIInfo()
// args.currentFilteringColumn -> to get column filtered
}
How I get the word searched in the filter?
thank you