how to write validation custom fields?

malli pagada May 8, 2012

Hi friends,

How to write validation for custom fields ? requirement is when i submit the form, it will fire validation whether it has 10 digits or not? if not it show alert box..please guide me.

Thanks

Mallikarjun

6 answers

2 votes
Radu Dumitriu
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.
May 8, 2012

Why write? We have a regex custom field, just use this pattern: '[0-9]{10}+'.

https://plugins.atlassian.com/plugins/com.keplerrominfo.jira.plugins.keplercf . It's free.

Edited: For existing custom fields, you may need to write javascript.

malli pagada May 13, 2012

i tried that plug in, it is showing that disabled..please help me

Radu Dumitriu
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.
May 14, 2012

You need to install katl-commons first.

1 vote
Andrey Markelov November 21, 2012
0 votes
atul June 4, 2012

Hey Amit,

I posted answer to your question on main question thread.

Please try and let me know if any issue.

Cheers..@tul

0 votes
Amit Girme June 4, 2012
0 votes
atul May 14, 2012

<script>
var beforesubmit=document.getElementById('issue-create-submit');
beforesubmit.onclick = function ()

{

Put your javascript validation code here. And make this script description of any custom field that is being used in your jira form.

}

</script>

Need further help let me know.

Cheers.. @tul

0 votes
Ramiro Pointis
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.
May 8, 2012

Hi Malli,

You want the validation to be on a screen of a transition? Or to be necessary to execute right before the transition? for example need 'Work Hours' to close an issue.

malli pagada May 13, 2012

need to check validtion before submit page..please

Suggest an answer

Log in or Sign up to answer