I would like to add a subitem to the Forms tree. Where if you expand out an individual form, I would like to add an item to those existing (Workflows, Entries).
Could someone please direct we how to do this or where to go for an example?
I have created my own completely new section in umbraco and created the tree programatically, but I don't know how to inject tree nodes into an existing tree.
I see that the current items call a javascript method. I would need my new node to call a method passing in the forms Id, and then for that javascript method to open my own aspx page in the right hand frame passing the form id as a query string parameter.
How do I add subitem to Forms tree
Hello,
I would like to add a subitem to the Forms tree. Where if you expand out an individual form, I would like to add an item to those existing (Workflows, Entries).
Could someone please direct we how to do this or where to go for an example?
I have created my own completely new section in umbraco and created the tree programatically, but I don't know how to inject tree nodes into an existing tree.
I see that the current items call a javascript method. I would need my new node to call a method passing in the forms Id, and then for that javascript method to open my own aspx page in the right hand frame passing the form id as a query string parameter.
Thanks for any assistance
Dean
You will need to get a handle on the tree.
Attached to the node create event in the constructor of a class inherited from ApplicationBase.
You should be able to evaluate the node being created and possibly inject your own node?
is working on a reply...