如何在UI中过滤gojs中的节点?

时间:2015-08-02 11:05:25

标签: gojs

我正在使用go.js在组织结构图上工作。

我无法弄清楚的一件事是,如何过滤特定节点?是否可以在go.js中使用UI搜索节点?

1 个答案:

答案 0 :(得分:2)

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的文档。