Hi Sir:
I find a problem!
The part of source code is as below:
obj.colModel = [
{
title: "<input type='checkbox' class='header_chk' onclick='SelectAll(this);' />",
dataIndx: "state", width: 30, align: "center", sortable: false,
type: 'checkBoxSelection', cls: 'checkboxColumn', resizable: false,
render: function (ui) {
var rowData = ui.rowData, dataIndx = ui.dataIndx;
var val = rowData[dataIndx];
str = "";
if (val) {
str = "checked='checked'";
}
return "<input type='checkbox' " + str + " />";
}, className: "checkboxColumn"
}]
when Scroll down, before the selected of the rows will become unselected?
I'm really confused....
Thanks!