In my project there is a List<User> . I want to bind data in that list to FilterTemplate-Radcombobox .
Because struct of the project I can't use SqlDataSource .
<FilterTemplate> <telerik:RadComboBox ID="RadComboBoxTitle" DataValueField="GroupId" Height="200px" AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("ContactTitle").CurrentFilterValue %>' runat="server" OnClientSelectedIndexChanged="TitleIndexChanged"> <Items> <telerik:RadComboBoxItem Text="All" /> </Items> </telerik:RadComboBox> </FilterTemplate>
Thanks