Altering Tree in Perspective Module

Hi all,
I'm new to the IGNITION application.
I am currently working on the PERSPECTIVE MODULE and need assistance with the TREE aspect.

Here is the Scenario:
I need a + button at the end of the TREE's Parent folder that will attach a CHILD folder underneath it when clicked.

[Screenshot Below]
ignition_tree_append

Can we alter the Tree to conduct these types of tasks, or are there other options?

Thanks in Advance,

I wouldn't think it's possible easily.

What I've done was add a small flex container above the tree with a handy filter and a + button and only enable the button if a valid selection is made on the tree. Operation is easily understood by the users.

I wouldn't think it's possible easily.

Tree plus button

What I've done was add a small flex container above the tree with a handy filter, tree expand and collapse buttons and a + button to add branches. In my case the button opens a popup to define the properties of the new entry. Another option you could consider for your application is to only enable the button if a valid selection is made on the tree and then insert below that level. You just need to consider how to add to the root of the tree.

Operation is easily understood by the users.

thanks