or
We used Rad grid in our Application, in that Filter Column Template is used to Filter the Following Data.
In the above list the term “AT&T” itself not filtering the Data. Because of “&” Special Character .How to Filter this scenario having Some Special character. Given below is the js code
function PartnerIndexChanged(sender, args) {
var PartnerView = $find("<%=rgResults.ClientID%>").get_masterTableView();
PartnerView.filter("PartnerName", args.get_item().get_value(), "Contains");
}
Me.rgProductModelSizeSubmittalDrawing.DataSource = Nothing
Me.rgProductModelSizeSubmittalDrawing.DataBind()