I have two fields in Sitecore:
- More details.
- Details Title.
I use sitecore MVC with a glass mapper and I need to make both fields editable on the eidtor page, so I use this code:
<div class="callout-footer"> <p> @using (BeginRenderLink(calloutItem, m => m.ReadMoreLink, new NameValueCollection { { "class", "group-action" } }, isEditable: true)) { <span class="text">@Editable(calloutItem, m => m.ReadMoreTitle) </span> } </p> </div>
Now I can edit the link, but the title is still not being edited. How to make them editable from the page editor?
source share