Bookmark content group issue

Hi All,

I'm facing some issue in my custom application bookmark list, When I expand bookmarked list in blog post it looks fine (1st screen) , but when I expand the bookmarked list in custom application there's an issue with content group, all my custom application bookmarked items shows current group as content group (2nd screen). Could anyone help me in this?

  • Former Member
    +1 Former Member

    Is the value returned for your application.Container changing? Here is the snippet of Site - Banner / bookmarks.vm widget file that determines what to show as the Container link:

    #if ($content && $content.Application && $content.Application.Container && $content.Url != $content.Application.Container.Url)
    	#if ($rootGroup.ContainerId != $content.Application.Container.ContainerId)
    		<span class="content-group">
    			<a href="$core_v2_encoding.HtmlAttributeEncode($content.Application.Container.Url)">$content.Application.Container.HtmlName('Web')</a>
    		</span>
    	#end
    #end

    This value would only vary based on what page it's viewed on, if the value of the Container or Container.Url was also changing based on the page.