I have been trying to make my own filter and I made one. Now, I want my filter on a grid to coorperate with each other like those on excel, filtering each other's list of candidates which is exactly the default set filter does.
I noticed that "doesRowPassOtherFilter" filterParam does what I desire. But after some trials and errors I realized I need help from others.
First problem is, the "doesRowPassOtherFilter" param only works for the default set filter. It doesn't work for my filter. I used params below.
filterParams: {
doesRowPassOtherFilter(node) {
return false
},
},
Second problem is, I have lost my way to the goal. I have just a blur idea of making a vuex state that holds each row's id, columns and whether it filtered already or not. I am looking forward a better idea and if possible, a code. Thank you for your help.