Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
this._tree.getDataModel();ツリー仮想で qooxdoo を実行すると、展開されたノードのみが返されます。ツリー内のすべてのノードを取得するにはどうすればよいですか?
this._tree.getDataModel();
私は自分で解決策を見つけました。getData() 関数は、データモデル内のすべてのノードの配列を提供します。
var dataModel = this._tree.getDataModel(); var dataArray = dataModel.getData();