i am working on telerik grid. i want to change row color of row in javascript i.e
function RadGrid1_RowDataBound(sender, args) {
if (args.get_dataItem()['LastName'] == "owner") { args.get_item().get_cell('LastName').style.Backcolor ='Red'; // how to do this
}
}