I've got a RadGrid on a page that I would like to be able to filter with a series of RadButtons which are on the same page.
I've tried using this...
...in JS but nothing happens, the event is being fired. I've also set the allowfiltering to be true on the grid and mastertable but this makes no difference.
Is there something I'm missing to get this to work?
Cheers
Cliff
I've tried using this...
var
masterTable = $find(
"<%= RadGrid1.ClientID %>"
).get_masterTableView();
masterTable.filter(
"OrderID"
, 10254, Telerik.Web.UI.GridFilterFunction.EqualTo,
true
);
Is there something I'm missing to get this to work?
Cheers
Cliff