Skip to content

Instantly share code, notes, and snippets.

@kimgunnarsson
Created January 9, 2015 14:47
Show Gist options
  • Save kimgunnarsson/fe573bda045f339c2449 to your computer and use it in GitHub Desktop.
Save kimgunnarsson/fe573bda045f339c2449 to your computer and use it in GitHub Desktop.
EPiServer UI Descriptor to set DefaultView to All Properties View
using EPiServer.Shell;
namespace Meridium.UIDescriptors
{
[UIDescriptorRegistration]
public class PageDataUIDescriptor: UIDescriptor<PageData>
{
public BasePageUIDescriptor()
{
DefaultView = CmsViewNames.AllPropertiesView;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment