This is a nice and concise article on how to construct a custom content in umbraco: http://www.robertgray.net.au/2011/5/10/creating-a-custom-content-tree-in-umbraco.aspx
We’re using that code as the basis for a custom content tree in our project. We have a problem when we click on the third level down in our content hierarchy, the javascript load method goes nuts in an endless loop continuously trying to load the two nodes we have at this level
This is an example request taken from Firebug: GET http://url/umbraco/webservices/TreeDataService.ashx?rnd=581ff40cf45242429247b213e8c83cc1&id=-1&treeType=New+Zealand&nodeKey=example12345&contextMenu=true&isDialog=false&app=dynamics&rnd2=50.3
Is this a known issue? The project was moved from 4.6 to 4.7 a few months ago, so maybe its related to that?
custom content tree problem
This is a nice and concise article on how to construct a custom content in umbraco:
http://www.robertgray.net.au/2011/5/10/creating-a-custom-content-tree-in-umbraco.aspx
We’re using that code as the basis for a custom content tree in our project. We have a problem when we click on the third level down in our content hierarchy, the javascript load method goes nuts in an endless loop continuously trying to load the two nodes we have at this level
This is an example request taken from Firebug:
GET http://url/umbraco/webservices/TreeDataService.ashx?rnd=581ff40cf45242429247b213e8c83cc1&id=-1&treeType=New+Zealand&nodeKey=example12345&contextMenu=true&isDialog=false&app=dynamics&rnd2=50.3
Is this a known issue? The project was moved from 4.6 to 4.7 a few months ago, so maybe its related to that?
What happens if you just try to hit that URL in the browser? Will that end up in the same kind of loop?
Have you tried to debug this using Visual Studio? Try setting a breakpoint in your render-method.
// M
is working on a reply...