From 46072c9a0c7ab630c42f49d9d1066107d97e86a3 Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Mon, 15 Aug 2016 01:28:31 +0200 Subject: [PATCH] Add "pattern" parameter to the parameters list --- BridgeAbstract.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/BridgeAbstract.md b/BridgeAbstract.md index 5db2d7e..c81b6ae 100644 --- a/BridgeAbstract.md +++ b/BridgeAbstract.md @@ -69,12 +69,13 @@ Following elements are supported : Parameter Name | Required | Type | Supported values | Description ---------------|----------|------|------------------| ----------- -`name`|**yes**|Text||Input name as displayed to the user -`identifier`|**yes**|Text||Identifier, which will be the key in the `$param` array for the [`collectData`](#the-collectdata-function) function -`type`|no|Text|`text`, `number`, `list`, `checkbox`|Type of the input, default is text -`required`|no|Boolean|`true`, `false`|Set this if you want your attribute to be required -`values`|no|Text|`[ {"name" : option1Name, "value" : "option1Value"}, ... ]`| Values list, required with the '`list`' type -`title`|no|Text||Will be shown as tool-tip when mouse-hovering over the input +`name` | **yes** | Text | | Input name as displayed to the user +`identifier` | **yes** | Text | | Identifier, which will be the key in the `$param` array for the [`collectData`](#the-collectdata-function) function +`type` | no | Text | `text`, `number`, `list`, `checkbox` |Type of the input, default is text +`required` | no | Boolean | `true`, `false` | Set this if you want your attribute to be required +`values` | no | Text | `[ {"name" : option1Name, "value" : "option1Value"}, ... ]` | Values list, required with the '`list`' type +`title` | no | Text | | Will be shown as tool-tip when mouse-hovering over the input +`pattern` | no | Text | | Defines a pattern for an element of type `text`. The required pattern should be mentioned in the `title` attribute! Hence, the most basic parameter definition is the following :