如何将空的、不可选择的行添加到 slickgrid 中?

发布于 2024-10-16 08:49:06 字数 246 浏览 2 评论 0原文

我正在使用 Slickgrid 显示通过 JSON 检索的表格数据。网格项的数量变化很大(大约 1 - 50 网格行),并且在页面生命周期期间网格经常用新数据重新加载。

为了使我的网格不那么“跳跃”(即避免频繁更改网格高度),我想以 10 行的恒定高度显示网格。如果 JSON 结果集少于 10 个项目,则网格应填充空行。如果超过10行,我想激活分页。

我已经弄清楚如何用空行填充网格,但是我不希望这些是可选择或可编辑的。我怎样才能实现这个目标?

I'm using Slickgrid to display tabular data retrieved via JSON. The number of the grid items varies greatly (approx. 1 - 50 grid rows) and the grid is reloaded often with new data during the page lifecycle.

To make my grid less "jumpy" (i.e. to avoid frequent changes of the grid height), I'd like to display the grid with a constant height of 10 rows. If the JSON resultset is less than 10 items, the grid should be filled up with empty rows. If it is more than 10 rows, I want to activate paging.

I already figured out how to fill up the grid with empty rows, however I don't want these to be selectable or editable. How can I achieve this?

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

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

发布评论

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

评论(1

じ违心 2024-10-23 08:49:06

与其加载空行,为什么不使用一点 CSS 呢?

div.slick-viewport {
    height: 100px; /* or whatever 10*row_height is */
}

Instead of loading it up with empty rows, why don't you just use a little bit of CSS?

div.slick-viewport {
    height: 100px; /* or whatever 10*row_height is */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文