Try to add {resizable: false} in numberCell
numberCell: {show: true, resizable: false}
or remove numberCell option as it's {show: true, resizable: false} by default.
Hi,
I try these two way but still don't work. Also the same error : 'offsetLeft' is null or not an object
And I didn't modify pqgrid.min.js. I think there maybe some other parts in my js codes have conflict with this js. But for the moment, I haven't check all codes.
Now I change my pggrid to 210 and the auto number can works well.
And one more question about hidden attribute.
I just try to use version 210 in my page. And I found the hidden function have some problems.
I want to display/hidden column dynamical. So for example, I set the following column "hidden:fase", then when I click a button I will hidden this column. It's order is 10 on my table.
So
{ title: "T1 (Up-front Payment)", width: 57, dataType: "float", halign:"center", align: "right", dataIndx: "t1UpfrontPayment",hidden:false}
My js codes
var colM = $("#grid_json").pqGrid("option", "colModel");
colM[10].hidden = true;
$("#grid_json").pqGrid("option", "colModel", colM);
These codes works well under the 2.0.4 version. But don't work under 210. And as before even I didn't set "hidden" in column, I can also get this attribute by js. But in 210 version, I debug the codes, if I didn't set "hidden" in column, I can't get this attribute.