After doing some research i tried something like this.
$(“[id^=jqg_][disabled='']“,ts.rows).attr(“checked”,true);
and on the grid i was setting the disabled property as
$(”#jqg_Q391″).attr(”disabled”, “true”);
so that it doesn't check the boxes which i have disabled.
But when i click anywhere on the disabled row or i click on the top checkbox it highlights the rows and still sends me the rowId of the rows where checkbox is disabled.
Varun