Our blazing fast Grid component built with pure JavaScript


Post by umeshaithu »

Hi support..

I have a tree grid and I have a search filed to search the grid. I'm filtering the entire store based on the value in the input field.. That causing an issue like, the children inside the parent are also getting filtered. Is there any way to only filter parents in a tree grid like structure?

listeners: {
                input(props: any) {
                  const { source, value } = props;
                  const { store } = source.up('grid');
                  store.clearFilters();
                  store.filter((record: any) => record.Name.toLowerCase().includes(value.toLowerCase()));
                  

Post by tasnim »

Hi,

We have a ticket to improve that behavior here https://github.com/bryntum/support/issues/3609. I'll add a comment that you've asked for it to increase the prio of the ticket


Post Reply