Hi Telerik !
I have a RAD GRID with four columns say.....
UserName FolderName FolderPath AssignPermission
I have a FILTER TEXT BOX on to the USERNAME & FOLDER NAME columns.
Now when I type an Username to filter the USERNAME columns the request goes on to the SERVER & filter the records for the Username columns.
Same happens in case of Foldername.
All i here want is to filter the RECORDS without any postback on to the server.
Currently, Iam using the follwing code snipttet provide in one of your FORUMS :-
<ClientEvents OnCommand="GridCommand" /> |
& Java script Code as :-
function GridCommand(sender, args) { |
if (args.get_commandName() == "Filter") { |
args.set_cancel(true); //stops the filter command |
} |
} |
Please help me.
Thanks & Regards