Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Tim 1193 posts 2675 karma points MVP 4x c-trib
    Feb 07, 2011 @ 18:14
    Tim
    0

    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.

  • Lee Kelleher 4026 posts 15837 karma points MVP 13x admin c-trib
    Feb 07, 2011 @ 18:30
    Lee Kelleher
    0

    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.

  • Shannon Deminick 1530 posts 5278 karma points MVP 3x
    Feb 08, 2011 @ 03:43
    Shannon Deminick
    2

    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.

  • Tim 1193 posts 2675 karma points MVP 4x c-trib
    Feb 09, 2011 @ 10:19
    Tim
    2

    @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.

    :)

  • bob baty-barr 1180 posts 1294 karma points MVP
    Mar 07, 2011 @ 19:37
    bob baty-barr
    0

    @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,

  • Anthony Powell 1 post 21 karma points
    Jul 05, 2011 @ 11:15
    Anthony Powell
    0

    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

  • Tim 1193 posts 2675 karma points MVP 4x c-trib
    Jul 05, 2011 @ 11:44
    Tim
    1

    @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?

  • Ambert van Unen 54 posts 96 karma points
    May 02, 2012 @ 10:38
    Ambert van Unen
    0

    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...

  • LOGISZ 2 posts 22 karma points
    Sep 05, 2013 @ 09:19
    LOGISZ
    0

    Add the following to web.config since GET and POST are disabled by default in ASP.NET 2.0 and greater:

    <configuration>
        <system.web>
        <webServices>
            <protocols>
                <add name="HttpGet"/>
                <add name="HttpPost"/>
            </protocols>
        </webServices>
        </system.web>
    </configuration>
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies