I have a multi level custom tree where I need to call different edit and create view depending on tree level
if (id == Constants.System.Root.ToInvariantString())
{ var tree = newTreeNodeCollection(); var controller = newCourseTreeController(); var route = string.Format("App_Plugin/msBackend/CourseTree/club"); foreach (var club in query) { var node = this.CreateTreeNode(string.Format("club-{0}", club.Id), id, queryStrings, club.Name, "icon-store", true, route); tree.Add(node); } return tree; }
The route does not do the job so how can this be achieved?
Controlling the route in Custom sections v7
Hi
I have a multi level custom tree where I need to call different edit and create view depending on tree level
The route does not do the job so how can this be achieved?
/Paul S
is working on a reply...