Hi,
i'm trying to filter a Grid using the RadComboBox with Checkbox's.
I could able to get the selected items vlaues in the server side.... but unable to apply the filter to the Grid.
i guess, Problem is with the Filter Expression. No errors/Exceptions
sample code... on click of a button inside the RadComboBox <FooterTemplate> ....
<<ascx.cs>>
rgAccounts.MasterTableView.FilterExpression = (string)ViewState["FilterExpr"];
rgAccounts.MasterTableView.Rebind();
where computed value of :
(string)ViewState["FilterExpr"] = "(AccountNums] IN (1203, 2344)"
Pls let me know how to fix this.
i'm trying to filter a Grid using the RadComboBox with Checkbox's.
I could able to get the selected items vlaues in the server side.... but unable to apply the filter to the Grid.
i guess, Problem is with the Filter Expression. No errors/Exceptions
sample code... on click of a button inside the RadComboBox <FooterTemplate> ....
<<ascx.cs>>
rgAccounts.MasterTableView.FilterExpression = (string)ViewState["FilterExpr"];
rgAccounts.MasterTableView.Rebind();
where computed value of :
(string)ViewState["FilterExpr"] = "(AccountNums] IN (1203, 2344)"
Pls let me know how to fix this.