Hello,
I have a RadGrid on my page.
The databinding to the grid is dynamic: the dataset that we bind is dynamic and the columns change every time.
When I allow the filtering, the filter is working only for the string typed columns.
For date/number columns, I am getting the exception:
Index (zero based) must be greater than or equal to zero and less than the size of the argument list.
I saw threads about this issue but didn't understand if there is a solution or it's just a known bug.
This feature of the Rad Grid was one of the reasons for buying the controls, so I hope we will see it working.
Here is the declaration of my grid:
<telerik:RadGrid ID="gridReviews" runat="server" Skin="WebBlue"
AllowFilteringByColumn="True" AllowSorting="True">
<HeaderContextMenu>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</HeaderContextMenu>
<MasterTableView>
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
</MasterTableView>
<ClientSettings AllowColumnHide="True" AllowColumnsReorder="True">
<Scrolling AllowScroll="True" ScrollHeight="600px" UseStaticHeaders="True" />
<Resizing AllowColumnResize="True" />
</ClientSettings>
<FilterMenu>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</FilterMenu>
</telerik:RadGrid>
I have a RadGrid on my page.
The databinding to the grid is dynamic: the dataset that we bind is dynamic and the columns change every time.
When I allow the filtering, the filter is working only for the string typed columns.
For date/number columns, I am getting the exception:
Index (zero based) must be greater than or equal to zero and less than the size of the argument list.
I saw threads about this issue but didn't understand if there is a solution or it's just a known bug.
This feature of the Rad Grid was one of the reasons for buying the controls, so I hope we will see it working.
Here is the declaration of my grid:
<telerik:RadGrid ID="gridReviews" runat="server" Skin="WebBlue"
AllowFilteringByColumn="True" AllowSorting="True">
<HeaderContextMenu>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</HeaderContextMenu>
<MasterTableView>
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
</MasterTableView>
<ClientSettings AllowColumnHide="True" AllowColumnsReorder="True">
<Scrolling AllowScroll="True" ScrollHeight="600px" UseStaticHeaders="True" />
<Resizing AllowColumnResize="True" />
</ClientSettings>
<FilterMenu>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</FilterMenu>
</telerik:RadGrid>