Hi there, I have a RadGrid with an Item tempalte
<telerik:RadGrid.... >
<ItemTemplate>
.....
</ItemTemplate>
</telerik:RadGrid>
I'd like to filter the items in my item template, based on a value selected in a treeview. In this case the treeview contains, property types - bungalow, house etc, and the itemtemplate contains a table displaying the various information on a property.
Is this possible ?
In the selectednodechanged event i'm attempting to apply the filtering there.
MyGrid.MasterTableView.FilterExpression = ...
But it can't find the field i'm specifying. Do i have to use a column bound to this datafield in order to filter ?
<telerik:RadGrid.... >
<ItemTemplate>
.....
</ItemTemplate>
</telerik:RadGrid>
I'd like to filter the items in my item template, based on a value selected in a treeview. In this case the treeview contains, property types - bungalow, house etc, and the itemtemplate contains a table displaying the various information on a property.
Is this possible ?
In the selectednodechanged event i'm attempting to apply the filtering there.
MyGrid.MasterTableView.FilterExpression = ...
But it can't find the field i'm specifying. Do i have to use a column bound to this datafield in order to filter ?