SlickGrid 启用添加行

发布于 2024-10-05 16:16:16 字数 154 浏览 2 评论 0原文

我想使用启用 AddRow 选项,但我希望新行显示在网格顶部...任何建议;下面是 slickgrid.js 中的 doco。

enableAddRow -(默认 false)如果为 true,底部将显示一个空白行 - 在该行中键入值将添加一个新行。

谢谢你!

I want to use the enable AddRow option but I want the new row to be displayed at the top of the grird...Any suggestions; Beloiw is the doco in slickgrid.js.

enableAddRow - (default false) If true, a blank row will be displayed at the bottom - typing values in that row will add a new one.

Thank you!

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

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

发布评论

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

评论(1

不知所踪 2024-10-12 16:16:16
function addRowToTheTop(){
    grid.getData().splice(0, 0, {});
    grid.invalidateAllRows();
    grid.updateRowCount();
    grid.render();
}

调用此函数可在网格顶部添加一个空行。不是很有效,但确实有效。

function addRowToTheTop(){
    grid.getData().splice(0, 0, {});
    grid.invalidateAllRows();
    grid.updateRowCount();
    grid.render();
}

Call this function to add an empty row at the top of the grid. Not very effective but it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文