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.
我正在使用 GWT 2.4。我在我的项目中使用树。我想在特定节点旁边的按钮单击上向上或向下移动树节点。有什么办法吗?
@Janki,您可以尝试Tree的以下属性来重新排序附加到它的TreeItems 。
myTree.insertItem(beforeIndex, item);
此属性在包含指定文本的指定索引处插入一个子树项目,其中beforeIndex是要插入项目的索引,而itemText是要添加的文本。