Special Input Fields
...
Special Input Fields
Administrative rights are required to edit workflows and add/modify the below workflow functionality.
Jira doesn't ship with any many of the fields you might expect to find for ensuring properly formatted commonly found data. So , so we added a few for you.
...
Table of Contents | ||
---|---|---|
|
...
Social Security Number
Ensures a properly-formed, legitimate United States Social Security Number (SSN) is entered with validation message upon error. Includes validation for known invalid entries (i.e. 000 prefixes)
xxx-xxx-xxxx
...
Phone Number
Ensures a properly-formed, legitimate United States +1 phone number. Accepts following formats with optional country code prefixes:
...
Regex Validated Single Line Text Field
There are many other instances where values must be validated for proprietary formats or accommodate global, specific national codes and formats.
Define a regular expression that must be matched for the field input to be valid. The validated field types above are common uses, but if those don’t cover everything you need to validate, you can use this field type to create a field with your own regular expression.
Once you’ve created the field, navigate to the custom field configuration and modify the Regex validation.
...
Table Field
Turbo Kit allows you to add a custom field to track dynamic tables. Using JSON tables you can create custom tables with validated field data.
columnHeading | Column Title |
---|---|
columnType | Validates entry. Supported column types are:
|
Example:
Code Block | ||
---|---|---|
| ||
[
{columnName: Name, columnType:string},
{columnName: Email, columnType:email}
] |
Info |
---|
Users can add as many rows to a table as desired, while viewing the table on a screen. |