Adds new fields to OTRS:
Adds a field that can be validated using regular expression.
Examples:
^\([0-9]{3}\) [1-9][0-9]{2}-[0-9]{4}$
Matches any phone number in the format of (555) 555-5555 (american style numbers)
^[0-9]*$
forces input to contain only numbers
^[a-zA-Z]*$
forces input to contain only characters
Validated using http://www.regexpal.com/
Date/Time field no longer requires user to check the box to include the date/time. Checkbox for inclusion is included on reporting screens. (saves about 1 click)
A lookup field that provides a jQuery UI Auto-Complete to either the Agent or Customer table.
Adds a data-table for collecting tabular data.
The column ordering is validated with the following regex: ^[0-9]{n}(:[and]?[r]?)?$
- Not specified = No validation performed
a = alpha onlyn = numeric only- d = datetime fields
- r = required column
strikethrough == not yet implemented