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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to install katl-commons first.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi!
You can use https://marketplace.atlassian.com/plugins/ru.mail.jira.plugins.uniqueregexfield
There is regex text custom field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Amit,
I posted answer to your question on main question thread.
Please try and let me know if any issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Atul,
I have a question https://answers.atlassian.com/questions/59877/how-can-we-clear-custom-field-value-using-javascript can you please help?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.