Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
From version 7.19, the default editor wrapper is floating. A floating editor appears next to its respective property and only takes as much size as required so you can see more of what is changing on the page as you edit the property. However, in some cases, the default editor wrapper may need to be changed to the flyout wrapper.
At initialization time, before the UI is displayed so that the correct confiuration data gets sent to the interface, use InitializableModule to configure of the default editor wrapper. In the following example, set the default editor wrapper property on the UI defaults object. This defaults object is stored as a singleton within the service locator.
using EPiServer.Cms.Shell;
using EPiServer.Framework;
using EPiServer.Framework.Initialization;
using EPiServer.Shell;
namespace MyProject.Business.Initialization
{
[InitializableModule]
[ModuleDependency(typeof(EPiServer.Web.InitializationModule))]
public class UIDefaultsInitialization : IInitializableModule
{
public void Initialize(InitializationEngine context)
{
// The supported default editor wrapper types are flyout and floating.
context.Locate.Advanced.GetInstance<CmsUIDefaults>().DefaultEditorWrapper = UiWrapperType.Flyout;
}
public void Preload(string[] parameters) { }
public void Uninitialize(InitializationEngine context) { }
}
}
Last updated: Sep 21, 2015