Try our conversational search powered by Generative AI!

Loading...
Area: Optimizely CMS
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Recommended reading 

Configuring the default editor wrapper

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) { }
    }
}
Do you find this information helpful? Please log in to provide feedback.

Last updated: Sep 21, 2015

Recommended reading