Note
custom_strings_inc.php, then it will be displayed as-is.
string, for strings of up to 255 characters.
numeric, for numerical integer values.
float, for real (float / double) numbers.
email, for storing email addresses.
enumeration is used when a user selects one entry from a list. The user interface for this type is a combo-box.
checkbox is like enumeration, but the options are shown as checkboxes and the user is allowed to tick more than one item.
RED|YELLOW|BLUE.
radio is like enumeration, but the list is shown as radio buttons and the user is only allowed to tick a single option.
RED|YELLOW|BLUE, and default YELLOW.
Note
list is like enumeration but the list is shown as a list box where the user is only allowed to select one option.
RED|YELLOW|BLUE, and default YELLOW.
Note
multi-selection list is like enumeration, but the list is shown as a list box where the user is allowed to select multiple options.
RED|YELLOW|BLUE, and default RED|BLUE.
Note
date, for date values.
tomorrow, next week, last month, +3 days, last day of this month, etc.
Note
{tomorrow}) is still supported for backwards-compatibility, but no longer necessary. This is considered a deprecated feature, that will be removed in a future released of MantisBT.
RED|YELLOW|BLUE). Use the pipe (|) character to separate the enumeration's values. It is possible for one of the values to be empty (e.g. |RED|YELLOW|BLUE, note the leading |).
=versions would automatically resolve into all the versions defined for the current project. See Section 7.2.7, “Dynamic values for Enumeration Custom Fields” for more information.