How to get check box checked rows from Kendo grid in jquery. And to get a field value of the selected row. I need to validate a field in the selected row. Please see the code currently i am using,
ibgrid.tbody.find(":checked")
.each(function (id)
{
alert($(this).val())
});
alert($(this).val())
shows the value of the selected row.
but i don't know how to get each row of the checkbox checked row.
I am using MVC 4, please help :(