AD
Administrator
Syncfusion Team
June 3, 2005 04:57 PM UTC
I do not have a sample for this.
Are you trying support searching nested tables? If so, the task complicates quickly.
For flat-ungrouped tables, I think the simplest way to handle this is through the grid.Table.FilteredRecords collection. You can look through that collection (which holds the records in the order they appear in the grid), using record.GetData to retrieve your row object (it will be a DataRowView if you are using DataTables), and then you can check this object for your match.
LM
Lan Mo
June 3, 2005 05:43 PM UTC
Hello Clay,
I use the single table with grouping. I''ll do the function for the GGC pop-up context menu on the form. I''ve uploaded the form''s files in the previous issue titled "Programming Grouping" that you''ve solved in a few minutes ago.
Thanks,
Lan
>I do not have a sample for this.
>
>Are you trying support searching nested tables? If so, the task complicates quickly.
>
>For flat-ungrouped tables, I think the simplest way to handle this is through the grid.Table.FilteredRecords collection. You can look through that collection (which holds the records in the order they appear in the grid), using record.GetData to retrieve your row object (it will be a DataRowView if you are using DataTables), and then you can check this object for your match.