Copied to clipboard

Flag this post as spam?

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


  • Ben Norman 167 posts 276 karma points
    Sep 04, 2015 @ 00:42
    Ben Norman
    0

    name of node in title instead of node id

    Hey there! I have a content picker in my Doc Type that is in a property that is a Nested Content Data Type. It would be great to have the title for the list item use the name of the node the content picker is referring to rather than the node id. Has anyone done this?

  • Jonathan 19 posts 101 karma points
    Sep 04, 2015 @ 06:58
    Jonathan
    0

    Hi Ben,

    I'm assuming your question refers to the displaying in the views, not the display of the list item in the CMS itself.

    See the documentation of the Content Picker. I think the code example at the bottom does exactly what you want, am I right?

    https://our.umbraco.org/documentation/getting-started/backoffice/property-editors/built-in-property-editors/Content-Picker

    To get this value within the loop of a Nested Content Data Type you'll end up with something like this (not tested):

    var nestedContentItems = Model.GetPropertyValue<IEnumerable<IPublishedContent>>("myPropertyAlias")
    
    foreach(var item in nestedContentItems) {
        var contentPickerNode = Umbraco.TypedContent(item.GetPropertyValue<int>("contentPicker"));
        <li>@contentPickerNode.Name</li>
    }
    
  • Ben Norman 167 posts 276 karma points
    Sep 04, 2015 @ 07:06
    Ben Norman
    0

    Oh. Thankyou for the reply. However, I am actually referring to the display of Nested Content Items in the CMS itself. Render the views is a snap. I love razor.

    I reference the content picker property in the dynamic title property of the nested content and get the id back in the cms display.

    i'm hoping to get the Name of the Node rather than the Id of the Node.

  • Jonathan 19 posts 101 karma points
    Sep 04, 2015 @ 08:25
    Jonathan
    0

    I was afraid that would be the answer ;-)

    Can't help you there, sorry...

  • Dan White 206 posts 510 karma points c-trib
    Oct 07, 2015 @ 18:33
    Dan White
    0

    Ben:

    Any luck figuring this out? I'm trying to do the same.

  • Heather Floyd 610 posts 1033 karma points MVP 6x c-trib
    Mar 28, 2017 @ 19:39
  • 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