Hi Team,
In my grid implementation I am storing grid state to backend and when user coming on the same grid I am pushing grid state and then after grid load pushing data to the grid.
Column config
filterable: {
filterField : {
type : "combo",
multiSelect : true,
items : ["View","Edit","Owner","Co-owner"]
},
filterFn : ({ record, value }) => true
},
So in above config I am passing filterFn to bypass grid filters and what ever data is there in column display regardless of filter.
This is working fine when user select filter on grid. Also this filter and sorting state is stored to backend. When user loading this grid again then data is not rendering in grid. this is happening for this dropdown type column.
if I remove and select another value for this filter then it starts working again.
Please suggest what I am doing wrong here