Hi All,
How can I change the name of filed that appear to creator in jira software project like we are doing in JSM ?
Do you mean change the field's name like in the portal for Request Types?
Natively, you can't do this in Jira's normal "Create Issue" screen - that's a JSM feature only.
If you have a scripting App though (eg. Scriptrunner), it might be possible to modify the fields in this manner! For example, use a Behaviour to change the field's label.
Do you have access to a scripting App?
Ste
@Ste Wright thanks alot. Yes, this is exactly what I want to do to change the display name of the filed in the create screen like JSM :)
Yes, I have scriptrunner I am using it in trial verison :) but want to change the display for this request only
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
From what I understand, this is possible on the Create Screen using Behaviours
These previous questions should also give you some ideas on how to do this:
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I decided to test this so I could clarify the process - see below for more specific instructions to create a Behaviour.
You'll need to be a Jira Admin and then...
You can then add more Fields/scripts, and/or press Save to activate this Behaviour.
---
The script is:
def field = getFieldById(getFieldChanged())
field.setLabel("<New Field Name Here>")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The name of the field is not possible to be changed, but you can change its description via field configuration. Make sure that your field configuration is not shared because this will affect all projects with the shared configuration.
So to change the field name:
If you want to edit the custom field name for all your projects then follow the instruction described here: https://confluence.atlassian.com/adminjiraserver/editing-or-deleting-custom-fields-1047552719.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks a lot for your reply but I don't do this I just change the name of the filed in this request screen
Iam doing this easily in JSM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you do that on JSM, but in Jira Soft and Core you can't do that :)
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.