Thank you for your reply
I hava other question, When I click on the other columns in the row , can I select checkbox or unselect checkbox,and select/unselect current row.
I try to do this,then it can select row when I click current row:
cellClick:function(event,ui){
var checkBoxCell = $( ".selector" ).pqGrid( "getCell", { rowIndx: ui.rowIndx, dataIndx: "checkBox" } );
if(!ui.rowData.checkBox){
$(checkBoxCell[0].children).trigger("click");
}
}
but when I click on the current row, I want to unselect the previous row.
Hope you can help me, thanks a lot.