I'm getting an error in the multi-node picker....... it's showing the items that are selected, but it isn't loading the tree in at all. It's always empty, regardless of what type of tree I select. I'm getting a JS error saying "Type is undefined".
Looking in Chrome, I'm also seeing an error with the call to: /packages/uComponents/MultiNodePicker/CustomTreeService.asmx/GetInitAppTreeData
which if I look in the server error logs is telling me that: Request format is unrecognized for URL unexpectedly ending in '/getinitapptreedata'
This is an issue with your web.config. you haven't registered ScriptService modules. Compare your web.config with the original web.config shipped with Umbraco.
@Shannon, oddly, the ScriptService was registered, but it was lower down the list than it should have been for some reason (which is wierd, as I hadn't moved it). Moved it back up the order, and re-saved web.config, and it's working again now! Thanks for the help.
@tim and @shannon, can you give me something a bit more specific on this... snippet maybe... because i just had this happen with a site too... and not sure what happened.
Yea I've looked over the web.config and i'm also unsure on what you guys are talking about. Really needing to fix this problem as I've based a lot of my login in the site on it. I can still drag things in to the datatype from the main tree. But the source tree that you select is not populating at all. Dosen't seem to matter if I republish anything as well..
@anthony, are you getting the same "Type is undefined" JS error? If so, have a look in your web.config and find the httpModules section. Can you post the contents of that section here please?
Multi-Node Picker Not Populating Tree
Hi,
I'm getting an error in the multi-node picker....... it's showing the items that are selected, but it isn't loading the tree in at all. It's always empty, regardless of what type of tree I select. I'm getting a JS error saying "Type is undefined".
Looking in Chrome, I'm also seeing an error with the call to: /packages/uComponents/MultiNodePicker/CustomTreeService.asmx/GetInitAppTreeData
which if I look in the server error logs is telling me that: Request format is unrecognized for URL unexpectedly ending in '/getinitapptreedata'
Any ideas how I can fix this?
:)
Tim.
Hi Tim,
Not seen this error myself :-(
Would you mind raising a new ticket on CodePlex? We can look into it further from there.
http://ucomponents.codeplex.com/WorkItem/Create
Include which versions of Umbraco and uComponents you are using.
Thanks, Lee.
This is an issue with your web.config. you haven't registered ScriptService modules. Compare your web.config with the original web.config shipped with Umbraco.
@Shannon, oddly, the ScriptService was registered, but it was lower down the list than it should have been for some reason (which is wierd, as I hadn't moved it). Moved it back up the order, and re-saved web.config, and it's working again now! Thanks for the help.
:)
@tim and @shannon, can you give me something a bit more specific on this... snippet maybe... because i just had this happen with a site too... and not sure what happened.
thanks,
Yea I've looked over the web.config and i'm also unsure on what you guys are talking about. Really needing to fix this problem as I've based a lot of my login in the site on it. I can still drag things in to the datatype from the main tree. But the source tree that you select is not populating at all. Dosen't seem to matter if I republish anything as well..
Thanks
@anthony, are you getting the same "Type is undefined" JS error? If so, have a look in your web.config and find the httpModules section. Can you post the contents of that section here please?
I've just had the same issue. Happened when I installed XSLTsearch, no idea how they bite eachother yet thoug. Uninstalling it removed the issue...
Add the following to web.config since GET and POST are disabled by default in ASP.NET 2.0 and greater:
is working on a reply...