From 889f7196ed9e5dfe419c4f90f66a032de14dd3de Mon Sep 17 00:00:00 2001 From: christophe-chazeau-sp <113442674+christophe-chazeau-sp@users.noreply.github.com> Date: Wed, 25 Mar 2026 15:05:21 +0100 Subject: [PATCH] Plugin Manifest File - Setting tag - AllowedValues allowedValues was incorrectly described as an attribute of the Setting tag. In reality it is a subtag witl allowed values encompassed in a subtag describing the tag. --- docs/iiq/plugin-developer-guide/chapter-2/index.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/iiq/plugin-developer-guide/chapter-2/index.md b/docs/iiq/plugin-developer-guide/chapter-2/index.md index d95a8d4775c53..51d50e36fa87c 100644 --- a/docs/iiq/plugin-developer-guide/chapter-2/index.md +++ b/docs/iiq/plugin-developer-guide/chapter-2/index.md @@ -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 + + value1 + value2 + +``` + ## 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: