Hi there,
I m evaluating the RAD Grid and got stuck...I have a grid with AutoGenerateColumns=true and AllowFilteringByColumn=true.
and i m hiding some columns in ItemDataBound event of grid. Now when I m trying to filter i m not getting correct result.
Actually Filter event is looking for the column which is hidden.
Assume that Grid has column A B C D...Z and I m hiding column B C D E . Now When I filter on Column G it has filterPair of Column B.
So on Column G it is trying to filter the data of some other column.
Basically its not filtering for the current column index.
And Same thing for Grouping..I have ShowGroupPanel="True" and AllowDragToGroup="true"
When I try to drag the column it is dropping the different column due to the hidden columns.
Is there any way I can get the index of filter column in either data bound or item command event so I can change the FilterExpression to correct column name.
I m evaluating the RAD Grid and got stuck...I have a grid with AutoGenerateColumns=true and AllowFilteringByColumn=true.
and i m hiding some columns in ItemDataBound event of grid. Now when I m trying to filter i m not getting correct result.
Actually Filter event is looking for the column which is hidden.
Assume that Grid has column A B C D...Z and I m hiding column B C D E . Now When I filter on Column G it has filterPair of Column B.
So on Column G it is trying to filter the data of some other column.
Basically its not filtering for the current column index.
And Same thing for Grouping..I have ShowGroupPanel="True" and AllowDragToGroup="true"
When I try to drag the column it is dropping the different column due to the hidden columns.
Is there any way I can get the index of filter column in either data bound or item command event so I can change the FilterExpression to correct column name.