Created
September 2, 2025 15:12
-
-
Save adnanzameer/628eacf74679c62e3990f4d17f2311e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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