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.
我可以使用 slickgrid 将数据插入数据库,但只能在最后一行完成。
是否可以在任何行添加行?
例如:我想通过使用将空行放在第 3 行
grid.getData().splice(varCurrentRowNumber - 1, 0, {});
你走在正确的轨道上,但你应该使用dataView它让这些事情变得更容易。
dataView.insertItem(varCurrentRowNumber - 1, {'id': 'gotta put something here'});