3

go.js を使用して組織図を作成しています。

私が理解できないことの 1 つは、特定のノードをフィルタリングするにはどうすればよいかということです。go.js でノードを検索するための UI を持つことは可能ですか?

4

1 に答える 1

3

組織図の静的サンプルには、ノードのフィルター処理の例を示す検索ボックスがあります。

// 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のドキュメントを参照してください。

于 2015-08-02T14:17:08.850 に答える