Thank you for your support.
My data is held in an array and the checked value is not in the array, nor in the underlying database.
So here is what I made out of it... It is working and OK for me while prototyping.
I am sure there would be a nice solution to it.
$("#get_id").click(function (evt) {
var checked = [];
var data = $("#grid_rowhover").pqGrid('option', 'dataModel.data');
for (var i = 0; i < data.length; i++) {
var rowDataByName = data;
var rowData = [];
for (var y = 0; y < data.length; y++)
{
if(y == 0)
{
rowData.push(data[0])
}
}
if (rowDataByName.state) {
checked.push(rowData[0]);
}
}
alert(checked);
});
Thanks again