I have a kendo grid having few columns, first column is rolename and other columns are add,edit,view and checkboxes below them...i am giving access of add,edit,view based on role. what i want to do is I want to disable a row which is having role name as 'Admin', means add,edit,view functionality of admin role shouldn't be changed from UI and all three checkboxes(add,edit,view) of that row should be disabled, however other rows can be editable. I want to achieve this on button click. i got the table row using following code, don't know how to proceed further.
var tableRow = $("td").filter(function () {
return $(this).text() == "Admin";
}).closest("tr");
any help please?