Hello :) I am newbe in Jira (5.2) and I would like to add custom field to my screen. I used custom field as text type and I want to allow users to enter in this field only data in the format XX:YY (which will be represented time eg. 21:00, 07:10 ...). I need to control that users can't enter an invalid value eg. 33:45, 88:77 .... How can I do that in Jira? Thanks for your reply.
Nic Brough ... I need to find or write a "validator" that will check the input matches the format which I want. As I mentioned Jira is new for me so I thought that maybe there are some options that will allow me in an easy and quick way to do something like this. I see that without the developers can not be done my restrictions.
Correct, there is no validator in the off-the-shelf version that will do what you need. You will need a plugin (or possibly some javascript)
I'd be tempted to try https://marketplace.atlassian.com/plugins/ru.mail.jira.plugins.uniqueregexfield although there are other plugins that might be of help too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We had a similar kind of requirement, we wanted users to enter only emaild IDs in the text field (i.e.., the text must end with "@xxx.com").
So, we had a written a validator which works based on Java Regular Expression (REGEX).
As a Admin while configuring the validator we would choose the CustomField whose value has to be validated and the required regex expression was configured.
Similar kind of validator would be meet your requirement
Note:
Having a custom Field would not be generic, because the Customfield will meet only your current requirement. But Validator can be used in many different ways with Regex expression
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just to fully explain that - you need to find or write a "validator" that will check the input matches the format you want to force on that field.
Or you could write a field *type* that encapsulates the function (a bit like the way a date or number field will only accept certain inputs)
Sara is suggesting the second and pointing you to the code you'll need to write
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you extend GenericTextCFType for you custom field class, just override this method:
public void validateFromParams(CustomFieldParams relevantParams, ErrorCollection errorCollectionToAddTo, FieldConfig config)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.