We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Search bar on grid Grouping control

Hello,
I need to add  search bar to my grid grouping control. This search should work that when user enters some word, it looks for the word in that grid and displays only those rows. 
Similar functionality is available in Grid Groupin control in web forms. Is similar available in windows form too? 
Can similar results be achieved by defining custom filters? 

Your assistance is highly appreciated.

Thanks,


1 Reply

SA Solai A L Syncfusion Team April 29, 2014 05:52 PM UTC

Hi Anon,

 

Thanks for using Syncfusion products.

 

We would like to let you know that our RecordFilterDescriptor helps you to filter the values based on the input. Kindly refer the below provided code snippet and sample for your reference.

 

Code Snippet:

FilterCondition cond = new FilterCondition(FilterCompareOperator.GreaterThan, 20);

RecordFilterDescriptor filter = new RecordFilterDescriptor("wins", cond);

this.gridGroupingControl1.TableDescriptor.RecordFilters.Add(filter);

 

Please let us know if you have any concerns.

 

Thanks & Regards,

AL.Solai.


Attachment: GGFilter_4e792270.zip

Loader.
Live Chat Icon For mobile
Up arrow icon