diff --git a/14/umbraco-cms/reference/notifications/editormodel-notifications/README.md b/14/umbraco-cms/reference/notifications/editormodel-notifications/README.md index 4f091f2082a..cc92fbb8428 100644 --- a/14/umbraco-cms/reference/notifications/editormodel-notifications/README.md +++ b/14/umbraco-cms/reference/notifications/editormodel-notifications/README.md @@ -1,5 +1,11 @@ # EditorModel Notifications +{% hint style="warning" %} +This page is a work in progress and may undergo further revisions, updates, or amendments. The information contained herein is subject to change without notice. + +EditorModel notifications are no longer handled on the server-side, but on the client-side. As the documentation effort progresses, the samples on this page will be updated accordingly. +{% endhint %} + EditorModel notifications enable you to manipulate the model used by the backoffice before it is loaded into an editor. For example the `SendingContentNotification` is published right before a content item is loaded into the backoffice for editing. It is therefore the perfect notification to use to set a default value for a particular property, or perhaps to hide a property/tab/Content App from a certain editor. ## Usage @@ -71,11 +77,11 @@ public class EditorSendingMemberNotificationHandler : INotificationHandler
  • ContentItemDisplay Content
  • IUmbracoContext UmbracoContext
  • |

    Published right before the editor model is sent for editing in the content section.
    NOTE: Content is a Umbraco.Cms.Core.Models.ContentEditing.ContentItemDisplay type which contains the tabs and properties of the elements about to be loaded for editing.

    |