Hi all,
I am using FilterTemplate to one of the column at clientside binding as :
<telerik:GridBoundColumn DataField="Name" HeaderText="Name" SortExpression="Name"
UniqueName="Name">
<FilterTemplate>
<telerik:RadComboBox ID="radFilterComboBox" DataTextField="Name" runat="server" AutoPostBack="true" ShowToggleImage="true"
OnSelectedIndexChanged="radFilterComboBox_SelectedIndexChanged" Skin="Office2007"
Width="300" OnItemsRequested="radFilterComboBox_ItemsRequested">
</telerik:RadComboBox>
</FilterTemplate>
</telerik:GridBoundColumn>
1) Now i need to populate this ComboBox with the Names which are in Name field(shown). And by the way i am not using SqlDataSource, instead using LINQ queries to bind grid at server side.
2) How to access this "radFilterComboBox" at codebehind in page_load.
Thanks in advance.