Standalone Configurator Configuration
How to configure the Storage Configurator
They are two ways of configuring the way the Storage Configurator is displayed:
- Using the Application Distribution "integration" parameter. 🔗
- If necessary from a developer side when using the standalone Storage Configurator, you can use DOM attributes. 🔗
User Interface
This first attribute has some big impact. It chooses if the global User Interface of the configurator is displayed. Only disable this if you want to build your own menus on your website.
The other attributes on this page are sorted in two lists:
- The attributes that can be useful with or without the user interface. 🔗
- The attributes that are only useful if you keep the user interface. 🔗
Note: If you use the Storage Configurator inside the planner, disabling the UI in the application distribution is probably not a good idea. It will hide the menus inside the planner.
Application Distribution | [Dev] DOM attribute | Possible values | Default value |
---|---|---|---|
userInterface | data-user-interface | Boolean | true |
Application Distribution example:
{
"integration": {
"userInterface": true
}
}
Attributes
Locale Name
This is the language used by the Storage Configurator. The value to use here is one of the name of the locales you configured in the Application Distribution.
Application Distribution | [Dev] DOM attribute | Possible values | Default value |
---|---|---|---|
localeName | data-locale-name | One of the name of the locales you configured in the Application Distribution. | "" |
Application Distribution example:
{
"integration": {
"localeName": "fr-FR"
}
}
Attributes (with UI enabled only)
Feature
The interface of the configurator can display some UI depending on the features flags
Application Distribution | [Dev] DOM attribute | Possible values | Default value |
---|---|---|---|
features | data-features | A JSON object with the value for each features. | See the list of features below. |
List of features
All Features are disabled by default.
Command name | Desktop default value | Mobile default value |
---|---|---|
mailService | false | false |
Application Distribution example:
{
"features": {
"mailService": true,
}
}