Form validation

kA October 6, 2013

Hi guyz,

Please help me,

If there is any possibility to perform the form validation in JIRA OnDemand?

Thanks in advance,

Karthik A.

5 answers

1 accepted

0 votes
Answer accepted
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013

then you have to create your own validator using atlassian Connect for ondemand jira

check this

https://developer.atlassian.com/display/AC/Atlassian+Connect

0 votes
kA October 10, 2013
0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013

you can configure field required validator from JSU Plugin which is preinstalled on ondemand jira

check abt validator

https://jsutil.atlassian.net/wiki/display/JSUTIL/JIRA+Suite+Utilities+Workflow+Validators#JIRASuiteUtilitiesWorkflowValidators-FieldsRequiredValidator

check this doc for more information on configuration of validator

https://confluence.atlassian.com/display/JIRA/Advanced+workflow+configuration#Advancedworkflowconfiguration-validatorAddingavalidator

if you want field required on create screen then you can make it required in the field configuration for the issue type/project

check this

https://confluence.atlassian.com/display/JIRA051/Specifying+Field+Behaviour#SpecifyingFieldBehaviour-Makingafieldrequiredoroptional

kA October 6, 2013

Hi prasad,

How to configure these one into ondemand JIRA?

RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013

got to administartion page

select Issues ---->workflows

select the workflow on which you want to do validation

click on edit option on right side of the workflow(it will create draft workflow)

click on new/open step name

click on create step

then click on validators tab

click on add link which is under validator tab

select the field required validator radio button then it will display the window and you need to choose the field which you need to validate

once it is completed then publish draft

Note:all the above steps are valid if you oopen workflow as in text mode

kA October 6, 2013

Hi Prasad,

I need to validate the text in the text box field using regex.for eg the mobile number field must be contains only the 10 digit. if we are giving less than 10 digit, it will show the message like "Reqiuired 10 digit". Any thing possible like that in onDemand JIRA.

0 votes
Bharadwaj Jannu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013

which form?

Is it workflow transition form, editing issue form, or any other form?

0 votes
kA October 6, 2013

In create issue form, i want to add the form validation in Ondemand JIRA?

Bharadwaj Jannu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013
Bharadwaj Jannu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013
import java.util.regex.Pattern;

import com.opensymphony.workflow.InvalidInputException;

import com.atlassian.jira.component.ComponentAccessor;

import com.atlassian.jira.issue.CustomFieldManager;

InvalidInputException e=new InvalidInputException();

ComponentAccessor comAcc =new ComponentAccessor();

CustomFieldManager cfm =  comAcc.getCustomFieldManager();

Object PhoneNumber = issue.getCustomFieldValue(cfm.getCustomFieldObjectByName("Phone Number"));

Pattern.matches("{your phone number regular expression}",PhoneNumber.toString()) == false)

{

e.addError(cfm.getCustomFieldObjectByName("Phone Number").getId(),"Phone number should be 10 digits"

}

The below link show how to add regular expression for 10 digit phone number

http://www.w3resource.com/javascript/form/phone-no-validation.php

Suggest an answer

Log in or Sign up to answer