Skip to content

Instantly share code, notes, and snippets.

@adnanzameer
Created September 2, 2025 15:12
Show Gist options
  • Select an option

  • Save adnanzameer/628eacf74679c62e3990f4d17f2311e5 to your computer and use it in GitHub Desktop.

Select an option

Save adnanzameer/628eacf74679c62e3990f4d17f2311e5 to your computer and use it in GitHub Desktop.
using EPiServer.Shell.ObjectEditing.EditorDescriptors;
namespace YourNameSpace.Business.Editor;
[EditorDescriptorRegistration(TargetType = typeof(ContentArea))]
public class ContentAreaWithStatusEditorDescriptor : EditorDescriptor
{
public ContentAreaWithStatusEditorDescriptor()
{
// Point to our custom Dojo widget
ClientEditingClass = "poc/editors/ContentAreaWithStatus";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment