I have a field on edit screen and I want to make the field read only only for particular status.
Is there any way apart from behaviors to make field read only in this case
Hello,
You can use also the Power Scripts add-on:
There is the Live Fields feature. You can modify fields in the Create, Edit and Transition Screens.
Your code would look like this:
if
(argv[
"screen"
] ==
"Your transition name"
) {
lfDisable("Your custom field name");
}
You can find more info on Live Fields here:
You don't. Jira does not have field permissions.
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.
Yes, you need something that will botch it with 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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.