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.
私はGWT2.4を使用しています。プロジェクトでTreeを使用しています。特定のノードの横にあるボタンクリックでツリーノードを上下に移動したい。そうする方法はありますか?
@ Janki、 Treeの次のプロパティを試して、それに接続されているTreeItemを並べ替えることができます。
myTree.insertItem(beforeIndex, item);
このプロパティは、指定されたテキストを含む指定されたインデックスに子ツリーアイテムを挿入します。ここで、beforeIndexはアイテムが挿入されるインデックスであり、itemTextは追加されるテキストです。