HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunityDoc feedbackLog In
GitHubNuGetDev CommunityDoc feedback


This topic describes how to create a view and controller for previewing blocks in Optimizely Content Management System (CMS). The preview adds on-page editing functionality, and a realistic view of what the block will look like when added to content areas with different widths.

Shared blocks are rendered in the context of a page, for example inside a content area. Like pages, blocks can be edited in the all properties editing view, but to be able to preview and edit them in the on-page edit view, you can create a preview page used to render blocks in edit view. A block template is typically a partial template like a partial MVC controller, or a partial view. The rendering is using the built-in Preview tag in the `EPiServer.Framework.Web` namespace.

## Create a block preview template

In this example we created these components to build a preview that can be used for all blocks:

  • A block preview page type

  • A block edit page view model

  • A preview controller

  • A preview view

See [Page types and templates](🔗) and [Block types and templates](🔗) for information on how to create page types, controllers and views.

### Block preview page type

**Example:** The block preview page type with a content area.



### Block edit page view model

**Example:** View model for the block.

Note

The `IPageViewModel` is a pattern from the Alloy sample site and it not required if the site not based on Alloy.



### Preview controller

`PreviewController` inherits from the `ActionControllerBase` and implements `IRenderTemplate<BlockData>`, making the controller able to render block types. The Index method is overridden and gets the start page as rendering context. A new instance of the `PreviewBlock` page type is created, and the block is programmatically added to the content area. The controller has a `TemplateDescriptor` "Preview" tag, ensuring that it is only used for on-page editing.

**Example:** The preview controller. If the site is using dependency injection this example should be changed to take the `IContentLoader` dependency as constructor injection instead.



### Preview view

**Example:** View for rendering the block in different widths depending on context.



The resulting outcome when editing and previewing a block in edit view.