Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/iiq/plugin-developer-guide/chapter-2/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,21 @@ Each `Setting` tag describes one element on the settings/configuration page for
| value | Value for the setting |
| label | Display label for the setting |
| helpText | Associated help text for the setting |
| allowedValues | List of allowed values for dropdown population |
| defaultValue | The default value for the setting |

It is also possible to force a list of allowed values that will be presented in the form of a dropdown component.

`AllowedValues` is a subtag of the `Setting` tag with each possible value specified in a tag describing its type.

For example :

```xml
<AllowedValues>
<String>value1</String>
<String>value2</String>
</AllowedValues>
```

## Snippets

Snippets are small, configurable pieces of code that can be injected into the rendering of normal IdentityIQ UI pages. A snippet contains four equally important components:
Expand Down
Loading