作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 go.js 制作组织结构图。
我无法弄清楚的一件事是,如何过滤特定节点?是否可以在 go.js 中有一个用于搜索节点的 UI?
最佳答案
org chart static sample 中有一个搜索框这给出了过滤节点的示例。
// create a case insensitive RegExp from what the user typed
var regex = new RegExp(input.value, "i");
...
// search four different data properties for the string, any of which may match for success
var results = myDiagram.findNodesByExample({ name: regex },
{ nation: regex },
{ title: regex },
{ headOf: regex });
请参阅 findNodesByExample 的文档获取更多信息。
关于gojs - 如何在 UI 中过滤 gojs 中的节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31771232/
我是一名优秀的程序员,十分优秀!