Hi,
I'm having trouble getting the filtering to work on a RadGrid that I'm using.
I have a static RadGrid object on the .aspx page like this:
The data for this grid is bound ultimately from a DataTable.AsDataView() call on a table that is generated through many functions on every single page postback.
The filter boxes show up fine on top of each column, but when I type in a value, then hit 'Contains' (for example) I get a really weird behaviour. And I'm not sure how to evaluate it.
After the filter is entered the grid looks like this :
http://tinyurl.com/cjf6d66
Its adding blank columns on, and filter on the wrong column.
Any help is appreciated
Thanks!
I'm having trouble getting the filtering to work on a RadGrid that I'm using.
I have a static RadGrid object on the .aspx page like this:
<
telerik:RadGrid
ID
=
"rgCustomReport"
AllowSorting
=
"true"
DataSourceID
=
"odsCustomReport"
PageSize
=
"50"
runat
=
"server"
OnItemCreated
=
"rgCustomReport_ItemCreated"
AllowPaging
=
"true"
AllowFilteringByColumn
=
"true"
EnableViewState
=
"true"
ShowFooter
=
"true"
AutoGenerateColumns
=
"false"
OnItemDataBound
=
"rgCustomReport_ItemDataBound"
Skin
=
"WebBlue"
OnPageSizeChanged
=
"Grid_SizeChanged"
OnSortCommand
=
"rgCustomReport_SortCommand"
>
<
PagerStyle
Mode
=
"NextPrevAndNumeric"
Position
=
"TopAndBottom"
AlwaysVisible
=
"true"
/>
</
telerik:RadGrid
>
The data for this grid is bound ultimately from a DataTable.AsDataView() call on a table that is generated through many functions on every single page postback.
The filter boxes show up fine on top of each column, but when I type in a value, then hit 'Contains' (for example) I get a really weird behaviour. And I'm not sure how to evaluate it.
After the filter is entered the grid looks like this :
http://tinyurl.com/cjf6d66
Its adding blank columns on, and filter on the wrong column.
Any help is appreciated
Thanks!