I am trying to create a custom column filter in v-client-table.
https://codepen.io/pydev/pen/BaZKgpR
options: {
dateColumns: ['birth_date'],
filterable: ['name','manufacturer', 'birth_date'],
headings: {
name: 'Name',
birth_date: 'Birth Date',
age: 'Age',
},
I am trying to make some tweaks to the 'Name' column filter.
I tried to get the text entered in the 'Name' search field so that I can mimic a customFilter, but unable to find a way to get the searched text.
I am strictly looking to keep the search box in the column filter.
Thanks in advance.