Hi All,
Is it possible to change a specific column's filter menu texts on RadGrid demo version(i am not sure if there is any difference between demo and regular version) ?
suppose that, we have four columns. three with GridBoundColumn and one for GridTemplateColumn with CheckBox (ItemTemplate).
i am writing sample code for that column, as follows...
I need to change just this column's filter texts.
If i use FilterMenu.Items collection on Page_Load (or on similar event ), it affects all columns.
Do you know any solution ?
Thanks in advance...
Is it possible to change a specific column's filter menu texts on RadGrid demo version(i am not sure if there is any difference between demo and regular version) ?
suppose that, we have four columns. three with GridBoundColumn and one for GridTemplateColumn with CheckBox (ItemTemplate).
i am writing sample code for that column, as follows...
<telerik:GridTemplateColumn UniqueName="chkBox" DataField="isActive" FilterListOptions="VaryByDataType" DataType="System.Boolean" CurrentFilterFunction="EqualTo" HeaderText="Is Active" AutoPostBackOnFilter="true" ItemStyle-Width="50px" FilterControlWidth="50px"> <ItemTemplate> <asp:CheckBox ID="CheckBox1" runat="server" OnCheckedChanged="ToggleRowSelection" AutoPostBack="True" Checked='<%#Bind("isActive") %>' /> </ItemTemplate> </telerik:GridTemplateColumn>I need to change just this column's filter texts.
If i use FilterMenu.Items collection on Page_Load (or on similar event ), it affects all columns.
Do you know any solution ?
Thanks in advance...