Jqgrid 动态设置cell disabled

$($(grid2.jqGrid("getGridRowById", i + 1))[0].children).each(function (childI, childO) {
if (childI == 4) {
// childO.disabled = true;
$(childO).addClass("not-editable-cell");
}
});

原文地址:https://www.cnblogs.com/ITCoNan/p/6370977.html