我正在使用dojo dataGrid(1.2.2),只是想知道我是否有办法更新给定行中的数据,并反映网格中的更改而不重新加载整个网格? 例如,我想将第5行列“x”从1设置为5 console.info(thisGrid.getItem(5).i.x); // 1 thisGrid.getItem(5).x = 5; ??更新行 console.info(thisGrid.getItem(5).i.x); // 5 并且第5行列“x”更改为5 提前谢谢!
大卫
答案 0 :(得分:0)
这是迟到的回应。 以防任何人仍在寻找回应。
How to update a Dojo Grid cell value using a TooltipDialog (and DropDownButton)