Property Actions
Guide on how to implement Property Actions for Property Editors in Umbraco
Property Actions are a built-in feature of Umbraco that allows you to add extra functionality to a Property Editor. Think of them as small, secondary actions that you can attach to a property without modifying the editor itself.
Property Actions appear as a small button next to the property label, which expands to show the available actions.
Property Actions in the UI

Registering a Property Action
Here is how you can register a new Property Action:
Creating the Property Action Class
Every Property Action needs a class that defines what happens when the action is executed. You can extend the UmbPropertyActionBase class for this.
Last updated
Was this helpful?