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.
我用按钮搜索向上/向下行的问题。我正在尝试使用“grid.getCurrentCell”,但是当我单击按钮时,currentCell 尚未定义。
我怎样才能做到这一点 ?
谢谢。
(对不起我糟糕的英语)
您可能可以使用行的 ID 来执行此操作。创建行时,将按钮设置为 <a onclick='moveUp(23)'><img src='up.gif'></a>
其中 23 是数据中的索引。你也可以通过调用来更新它:
for(var i in data) data[i]['upButtonColumn']="<a onclick='moveUp("+i+")'><img src='up.gif'></a>"; grid.removeRows(rows); grid.render();
或类似的东西,但这会更慢。