I am new to telerik controls, i am having an issue with the filtering in the grid view.
I am using an MVP architecture were i am binding the a datatable to a radgrid in code behind .
I have set the gridviews allowfilterbycolumn set but still i am not able to filter.
Pls help me.
this is the UI look like
<telerik:RadGrid ID="systemsRadGrid" AllowFilteringByColumn="True" runat="server" Width="500" PageSize="10"
AllowSorting="True" AllowMultiRowSelection="True" OnColumnCreated="RadGrid2_ColumnCreated" AllowPaging="True" EnableLinqExpressions="false" ShowGroupPanel="True">
<PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
<MasterTableView AllowFilteringByColumn="True" runat="server">
</MasterTableView>
<ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="True" AllowColumnsReorder="True">
<Selecting AllowRowSelect="True"></Selecting>
<Resizing AllowRowResize="True" AllowColumnResize="True" EnableRealTimeResize="True"
ResizeGridOnColumnResize="False"></Resizing>
<Scrolling AllowScroll="false" />
</ClientSettings>
<GroupingSettings ShowUnGroupButton="true" />
</telerik:RadGrid>
The code for binding is
SettingsForBusiness obj1 = new SettingsForBusiness();
systemsRadGrid.DataSource = obj1.getSystemsGrid();
systemsRadGrid.DataBind();
please help meeee
I am using an MVP architecture were i am binding the a datatable to a radgrid in code behind .
I have set the gridviews allowfilterbycolumn set but still i am not able to filter.
Pls help me.
this is the UI look like
<telerik:RadGrid ID="systemsRadGrid" AllowFilteringByColumn="True" runat="server" Width="500" PageSize="10"
AllowSorting="True" AllowMultiRowSelection="True" OnColumnCreated="RadGrid2_ColumnCreated" AllowPaging="True" EnableLinqExpressions="false" ShowGroupPanel="True">
<PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
<MasterTableView AllowFilteringByColumn="True" runat="server">
</MasterTableView>
<ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="True" AllowColumnsReorder="True">
<Selecting AllowRowSelect="True"></Selecting>
<Resizing AllowRowResize="True" AllowColumnResize="True" EnableRealTimeResize="True"
ResizeGridOnColumnResize="False"></Resizing>
<Scrolling AllowScroll="false" />
</ClientSettings>
<GroupingSettings ShowUnGroupButton="true" />
</telerik:RadGrid>
The code for binding is
SettingsForBusiness obj1 = new SettingsForBusiness();
systemsRadGrid.DataSource = obj1.getSystemsGrid();
systemsRadGrid.DataBind();
please help meeee