如何在 OrgChart 中仅折叠 children?
How to collapse only children in OrgChart?
我找到了这个很棒的库,用于创建名为 OrgChart 的组织结构图。
这是它的样子:
绿色箭头允许您折叠 parents/children/siblings 节点。你可以在这里试试看我的意思:example
我的目标是删除除 children 之外的所有绿色箭头,以便我只能从组织的最顶部开始垂直折叠。你知道我怎样才能达到这样的结果吗?
提前致谢。
我找到了问题的解决方案:
在文件 jquery.orgchart.js 中,您需要从所有标签中删除以下项目:
class="edge horizontalEdge rightEdge oci"
class="edge horizontalEdge leftEdge oci"
class="edge verticalEdge topEdge oci"
所以你只剩下 <i class="edge verticalEdge bottomEdge oci"></i>
而所有其他标签都是 <i></i>
我找到了这个很棒的库,用于创建名为 OrgChart 的组织结构图。
这是它的样子:
绿色箭头允许您折叠 parents/children/siblings 节点。你可以在这里试试看我的意思:example
我的目标是删除除 children 之外的所有绿色箭头,以便我只能从组织的最顶部开始垂直折叠。你知道我怎样才能达到这样的结果吗?
提前致谢。
我找到了问题的解决方案:
在文件 jquery.orgchart.js 中,您需要从所有标签中删除以下项目:
class="edge horizontalEdge rightEdge oci"
class="edge horizontalEdge leftEdge oci"
class="edge verticalEdge topEdge oci"
所以你只剩下 <i class="edge verticalEdge bottomEdge oci"></i>
而所有其他标签都是 <i></i>