在 jqgrid treegrid 中,我如何指定我希望默认情况下折叠数据(即使所有数据都已加载)
我正在加载一个完整的树形网格,但我想让它折叠起来只显示级别 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您既不包含在问题中,也不包含 jqGrid 定义,也不包含用于填充三个网格的测试 JSON 或 XML 数据。我想,您用
true
填充了树形网格的“扩展”列。两种模式的树形网格中都存在隐藏列“expanded” 嵌套集模型 和 邻接模型。如果您在列中设置false
,则树将不会被扩展。请参阅此处示例。您应该查看 AdjacencyTree.json< 的倒数第二列/a>.它包含
false
,因此不会扩展树节点。 JSON 文件中隐藏列的包含如下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 setfalse
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