| Title: inverted filter Post by: madstudio on October 22, 2015, 06:53:30 PM Is it any possible way to get an inverted selection filter (everything but not the selection on combogrid)  to display result on datagrid ? My apologies to ask something probably easy for experts, but after several hours, I've realized is not my case. Title: Re: inverted filter Post by: stworthy on October 22, 2015, 08:03:32 PM You can call 'getValues' method to get all the selected values on the combogrid. To get all the unselected rows, please try this: Code: var cc = $('#cc');  // the combogrid objectTitle: Re: inverted filter Post by: madstudio on December 17, 2015, 07:31:53 PM Thank you for the answer, but it did't really work. What I am trying to achieve is if you select for instance "Apples" in the filter, then you Datagrid display everything except the rows that contains the word "Apples" Or In my real scenario , I need to hide rows that contains numbers between 0 and 999 in a certain column called "CODE" Cheers! |