Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 setCell 设置单元格的值,然后启用单元格进行编辑
grid.jqGrid('setCell','1','Valid','5'); grid.jqGrid('editRow','1', false);
但结果是我不能再点击单元格了?
调用 serCell 后,单元格不再可编辑。
我怎样才能使这个单元格再次可编辑?
谢谢
从评论中我找到了解决方案
而是像这样设置列值
grid.jqGrid('setCell','1','Valid','5');
你需要这样设置: $('#1_Valid').val('5');
$('#1_Valid').val('5');