7 Answers, 1 is accepted
Can you post more info about your scenario and why you do not want to use filter descriptors?
Sincerely yours,Vlad
the Telerik team

Hi Vlad
I need to convert the cells grid data to string and find if the cell contains the search value
And display only these rows.
Best regards
ehud
Please check this blog post - I believe that the approach is very close to your scenario.
All the best,Vlad
the Telerik team

Hi Vlad
The problem in this demo that I need to know the Type and the properties
And I don’t know this.
Is there another solution?
How can I run over all the cells and get there Values?
Best Regards
Ehud
You cannot get all cells since the grid is UI virtual component - UI elements will be created only for currently visible data.
Kind regards,Vlad
the Telerik team

Hi Vlad
I noticed that I can get all the values per column
var columnValues = column.DataControl.GetDistinctValues(column, true);
Maybe I can filter by these values?
Is there sample for this?
Best regards
Ehud
You already have access to all values using Items collection. Just cast it to your item type and access desired property.
All the best,Vlad
the Telerik team