在 jqgrid treegrid 中,我如何指定我希望默认情况下折叠数据(即使所有数据都已加载)

发布于 2024-11-17 20:17:46 字数 263 浏览 3 评论 0原文

我正在加载一个完整的树形网格,但我想让它折叠起来只显示级别 1(而不是显示所有展开的内容)

当我的 jqgrid 树形网格再次加载和重新加载时,是否有指定初始视图(折叠或展开)

,我确实想要将所有内容加载到客户端,但仅将内容显示为折叠的初始视图。

我在主文档页面上没有看到任何选项

I am loading a full treegrid but i would like to have it collapse to only show level 1 (versus showing everything expanded)

is there anyway to specify initial view (collapsed or expanded) when my jqgrid treegrid loads and reloads

again, i DO want to load everything to the client, but just show things collapsed as the inital view.

i don't see any option on the main documentation page

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

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

发布评论

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

评论(1

风吹雪碎 2024-11-24 20:17:46

您既不包含在问题中,也不包含 jqGrid 定义,也不包含用于填充三个网格的测试 JSON 或 XML 数据。我想,您用 true 填充了树形网格的“扩展”列。两种模式的树形网格中都存在隐藏列“expanded” 嵌套集模型邻接模型。如果您在列中设置false,则树将不会被扩展。请参阅此处示例。

您应该查看 AdjacencyTree.json< 的倒数第二列/a>.它包含false,因此不会扩展树节点。 JSON 文件中隐藏列的包含如下

level parent isLeaf expanded loaded
-----------------------------------
  0          false    false   true
  1     1    false    false   true
  2     2     true    false   true
  2     2    false    false   true
  3     4     true    false   true
  2     2     true    false   true
  1     1    false    false   true
  2     7    false    false   true
  3     8     true    false   true
  3     8     true    false   true
  2     7     true    false   true

You don't included in the question neither jqGrid definition nor the test JSON or XML data which you use to fill the three grid. I suppose, that you filled the 'expanded' column of the tree grid with true. The hidden column 'expanded' exist in the tree grid for both mode Nested Set Model and Adjacency Model. If you would set false in the column the tree will be not expended. See here an example.

You should take a look in the next-to-last column of the AdjacencyTree.json. It contains false, so no tree node will be expanded. The contain of the hidden columns from the JSON file are the following

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