Hi,
I'm trying to Hide fields on issue create screen if custome field = value,
How can I achive it using a server side script JIRA Behaviours Plugin.
To be more accurate .. I'm looking for examples for a server side scripts that can help me with my task.
Hi Oded,
your approach seems correct. I suggest to use beahviour plugin and not a custom javascript.
You could use this example :
FormField fieldFF = getFieldByName("YOUR CUSTOM FIELD NAME HERE"); String fieldValue = fieldFF.getValue(); if("FIELD VALUE".equals(fieldValue)){ FormField fieldToHideFF = getFieldByName("YOUR FIELD NAME HERE"); fieldToHideFF.setHidden(true); }
Hope this helps,
Fabio
Thanks,
Can I just return True/False from the serverside script and use the behaviour options?
I have tried the following and it seems to return true all the time ( Report Type field is always in "readonly" state.
Staus field is radio button field type.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is a server side script that allows you to add more capability to you custom fields. Whay do you need to return true/false, who should use this value? So if you need to hide the custom field depending to another custom field try to use the provided code.
Regards,
Fabio
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.
The behavior you want to implement is typically done with client-side scripting. I agree that adding javascript to the description field is not the most managable option, but you have other solutions:
https://developer.atlassian.com/display/JIRADEV/Web+Resource+Plugin+Module
You can always create a web resource plugin that injects the java script into JIRA in a clean way. This solution is perfectly manageable, because the plugin can be disabled/removed any time you want.
More examples on javascript and custom fields can be found here:
https://answers.atlassian.com/questions/291978/javascript-to-hide-show-custom-field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is btw not best practice to hide/show form fields based on another value, but is is preferable to enable/disable them. In this way it is also obvious for the user which options are available for certain values. This helps him to better understand how the form works and it makes the ui cleaner, without the jumping of ui elements.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you mean updating the "description" of the field with javascript ? if so, I really dont like this method because it is very hard to admin the customisation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Oded,
Is there a reason why you prefer server side scription instead of javascript?
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.