当 slickgrid 失去焦点时如何保存单元格

发布于 2024-12-06 12:51:57 字数 219 浏览 1 评论 0原文

我有一个 SlickGrid,在表单上有一些编辑器,上面有一些按钮。 (保存并取消)。当我编辑网格中的单元格并单击网格上方的按钮时 - 该单元格不会提交它的编辑。我已经调试过,但它没有调用:commitCurrentEdit。我还测试了单击网格区域外任何地方的空白区域...

是否有人注意到这种情况,并有一种解决方案可以在单击网格外时让单元格提交。由于网格的位置不同,因此很难进行叠加。

谢谢

I have a SlickGrid with some Editors on a form with some buttons above it. (Save and Cancel). When i edit a cell in the grid and click the buttons above the grid - the cell does not commit it's edit. I've debugged and it is not calling : commitCurrentEdit. I've also tested on clicking an empty area anywhere out of the grid area...

Has anyone noticed this scenario and have a solution to get the cell to commit when one clicks out of the grid. Due to the various positions the grid good be in it would be hard to do an overlay.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女山的月亮 2024-12-13 12:51:57

你可以试试这个:

$("#buttonName").bind("click", function(){
  gridName.getEditController().commitCurrentEdit()
});

You can try this:

$("#buttonName").bind("click", function(){
  gridName.getEditController().commitCurrentEdit()
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文