Not able to edit the Component link filed title in New UI Implementation?

153 Views Asked by At

Here is the snippet of code..

<a class="link-display"  target="_self"  onclick="doLink('TaggingMetaData:banner;bannerTitle:PRO_Simple Promo;bannerId:64-90667;;url:/newSiteEditSP1/newpagetest.html;urlTarget:_self;urlType:internal;linkTitle:Simple Promo with component link;popupparams:;siteEdit:2;Segments1:;Segments2:;Segments3:;Segments4:');return(false);" onkeypress="doLink('TaggingMetaData:banner;bannerTitle:PRO_Simple Promo;bannerId:64-90667;;url:/newSiteEditSP1/newpagetest.html;urlTarget:_self;urlType:internal;linkTitle:Simple Promo with component link;popupparams:;siteEdit:2;Segments1:;Segments2:;Segments3:;Segments4:');return(false);" href="/newSiteEditSP1/newpagetest.html?WT.ac=PRO_Simple+Promo_64-90667_T90672-NE-newsiteeditsp1&oc_id=PRO_Simple+Promo_64-90667_T90672-NE-newsiteeditsp1" >
  <span>
    <!-- Start SiteEdit Component Field: {"XPath" : "tcm:Content/custom:Content/custom:Links[2]/custom:Title"} -->
    Simple Promo with component link
  </span>
</a>
1

There are 1 best solutions below

2
On

This will not work like

<!-- Start SiteEdit Component Field: {"XPath" : "tcm:Content/custom:Content/custom:Links[2]/custom:Title"} -->

You have to create the siteedit component presentation tag for component link component and then use like

  <span>
     <!-- Start SiteEdit Component Presentation: {"ID" : "cp_uniqueid", "ComponentID" : "component link component id", "ComponentTemplateID" : "templateid", "Version" : 3, "IsQueryBased" : true  } -->
      <span>
   <!-- Start SiteEdit Component Field: {"XPath" : "tcm:Content/custom:Content/custom:Title[1]"} -->
        Simple Promo with component link
      </span>
     </span>

Hope it helps..

Thanks