I have exactly followed the umrbaco.tv series of creating custom sections and tree. so the section shows up fine but the app tree does not. Inside the umbracoAppTree table i have used the following:
I put a break point inside the custom app tree handler class to see whats happening but turns out its not being hit by the umbraco at all. Wondering whats causing it. I also tried treeHandlerType= LoadUgc but that did not work either.
I think that the type of the class is determined by assembly + typeName, so you'll be ending up with Common.Web.Common.Web.Umbraco.Extensions.LoadUgc which isn't a valid type and Umbraco will ignore it.
Custom AppTree class not picked up by umbraco
asp.net 3.5, iis6, umbraco 4.5.2
I have exactly followed the umrbaco.tv series of creating custom sections and tree. so the section shows up fine but the app tree does not. Inside the umbracoAppTree table i have used the following:
treeHandlerAssembly => Common.Web
treeHandlerType => Common.Web.Umbraco.Extensions.LoadUgc
I put a break point inside the custom app tree handler class to see whats happening but turns out its not being hit by the umbraco at all. Wondering whats causing it. I also tried treeHandlerType= LoadUgc but that did not work either.
thanks
I think that the type of the class is determined by assembly + typeName, so you'll be ending up with Common.Web.Common.Web.Umbraco.Extensions.LoadUgc which isn't a valid type and Umbraco will ignore it.
slace is right, your entry should be:
treeHandlerAssembly => Common.Web
treeHandlerType => Umbraco.Extensions.LoadUgc
is working on a reply...