Adding configuration to a property editor
Overview
This is step 2 in our guide to building a Property Editor. This step continues work on the Suggestion Data Type we built in step 1, but goes further to show how to add configuration options to our editor.
Configuration
An important part of building good Property Editors is to build something flexible, so we can reuse it many times, for different things. Like the Rich Text Editor in Umbraco, which allow us to choose which buttons and stylesheets we want to use on each instance of the editor.
An editor can be used again and again, with different configurations, and that is what we will be working on now.
There are two ways to add configuration to the Property Editor. If in the previous step you chose to create the property editor using a package.manifest file, read the package.manifest section below. If you have chosen the C# variant, read the Csharp part of the article.
Package.manifest
To add configuration options to our Suggestion Data Type, open the package.manifest file. Right below the editor definition, paste in the prevalues block:
...
"editor": {
"view": "/App_Plugins/Suggestions/suggestion.html"
}, // Remember a comma separator here at the end of the editor block!
"prevalues": {
"fields": [
{
"label": "Enabled?",
"description": "Provides Suggestions",
"key": "isEnabled",
"view": "boolean"
},
{
"label": "Default value",
"description": "Provide a default value for the property editor",
"key": "defaultValue",
"view": "textarea"
}
]
}So what did we add? We added a prevalue editor, with a fields collection. This collection contains information about the UI we will render on the Data Type configuration for this editor.
The label "Enabled?" uses the "boolean" view. This will allow us to turn the suggestions on/off and will provide the user with a toggle button. The name "boolean" comes from the convention of all preview editors.
Same with the "Default value" label, it will provide the user with a textarea. The user can input a default value for the property editor that should be displayed when the property editor is blank.
To hide the property editor label, add the hideLabel parameter in the editor block:
Your package.manifest file should now look something like this:
Csharp
It is also possible to add configuration if you have chosen to create a property editor using C#. Create two new files at the root of your project and update the existing Suggestion.cs file to add configuration to the property editor.
First create a SuggestionConfiguration.cs file with three configuration options: Enabled?, Default Value, and Hide Label?:
Then create a SuggestionConfigurationEditor.cs file:
Finally, edit the Suggestion.cs file from step one until it looks like the example below:
Save the file, rebuild the application and have a look at the Suggestions Data Type. You should see that you have one configuration option.

Using the configuration
The next step is to gain access to our new configuration options. For this, open the suggestion.controller.js file.
Let's add the
isEnabledfunctionality. Before the closing tag, we will add agetStatemethod:
Next, we'll add the
defaultValuefunctionality. When the$scope.model.valueis empty or null, we want to use the default value. To do that, we add the following to the start of the controller:
See what's new? The $scope.model.config object. Also, because of this configuration, we now have access to $scope.model.config.defaultValue which contains the configuration value for that key.
Your suggestion.controller.js file should now look like:
Finally, we'll add the
hideLabelfunctionality. For this, we'll open theSuggestion.csfile and override the GetValueEditor method with configuration as a parameter.Your
Suggestion.csfile should now look like:
Save the files and rebuild the application. To access the configuration options, enable/disable the Enabled? and Hide Label? options. Additionally, you can set a default value in the Default Value field and see the Suggestions Data Type at play.


Last updated
Was this helpful?