Filter löschen
Filter löschen

Copy nodes and sub-nodes of uitree to another uitree

11 Ansichten (letzte 30 Tage)
Hossein Sadeghi
Hossein Sadeghi am 15 Feb. 2022
Beantwortet: James Sweetman am 2 Jan. 2023
Hi,
I have two trees in app-designer and created some nodes and subnodes in one of them as follows:
for i=1:length(data1)
nodes(i) = uitreenode(tree1,'Text',data1(i));
subnodes(i) = uitreenode(nodes(i),'Text',data2(i));
end
Now I want to copy these nodes and subnodes to the second tree. I used:
Copyobj(nodes, tree2);
This works fine when the tree has no subnodes, but throw error for my case with subnodes.
  2 Kommentare
Simon Chan
Simon Chan am 15 Feb. 2022
Did you try the following?
copyobj(nodes(1),tree2)
copyobj(nodes(2),tree2)

Melden Sie sich an, um zu kommentieren.

Antworten (1)

James Sweetman
James Sweetman am 2 Jan. 2023
This seems to work!
arrayfun(@(x,y) copyobj(flipud(x.Children),y),tree1,tree2)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by