i need to change the color of kendo grids row by using it's index no. i tried using this but nothing happened.
var gview = $('#SearchResult').data().kendoGrid;//searchresult is grid's id
var dataRows = gview.items();
var rowIndex = dataRows.index(gview.select());
gview.tbody.find("tr:eq("+rowIndex+")").css("background-color", "green");
It's not throwing any error in debugger but not giving any result.
You need to find Uid of a row by its index and find tr by its data-uid, check below function
Hope this will help you :)