Add editing attributes
Describes how to add editing attributes for content rendering in a template, when working with Optimizely Content Management System (CMS).
When you work with content data in Optimizely Content Management System (CMS), the default way to render content in a template is to use the PropertyFor
helper, @Html.PropertyFor
(see EPiServer.Web.Mvc.Html.PropertyExtensions.PropertyFor
 in the class library), which is responsible for adding the required HTML to be editable in the content editing view.
However, if you render your content some other way, ensure the output contains the HTML attributes required by the content editing view.
Apply edit attributes to an element
The best way to add the required attributes for editing is to use the EditAttributes
HTML helper. Add a wrapping HTML element around the rendered content and call EditAttributes
on it.
Apply full refresh properties
Some properties can affect the rendering of several parts of the page. For instance, you may have a Boolean value on your page type that turns several panels on or off. To get a correct preview of such a property, you must fully refresh the page.
To make a set of properties force a full reload on change, use the HTML helper FullRefreshPropertiesMetaData
.
The following example shows how to use these methods in a template:
@Html.FullRefreshPropertiesMetaData(new[] { "ShowBanner" })
<h1 @Html.EditAttributes(x => x.Heading)>
/* Render the Heading property, unless it is empty, then use PageName as fallback */
@Model.Heading ?? @Model.PageName
</h1>
@Html.PropertyFor(x => x.CurrentPage.MainBody)
using System;
using EPiServer;
using EPiServer.Core;
using EPiServer.DataAnnotations;
namespace CodeSamples {
[ContentType]
public class MyPageType: PageData {
public virtual string Heading {
get;
set;
}
public virtual XhtmlString MainBody {
get;
set;
}
public virtual bool ShowBanner {
get;
set;
}
}
}
Updated about 2 months ago