Hello all,
How to increase single-line text field characters limit?. Currently, we are able to add only 255 characters in it, we want to extend it to 1000 characters. Is it possible?.
Thanks in advance,
CH
Hi @[deleted]
Not natively via administration, etc.
The simplest option would be to create a new custom field - Text Field (multi-line) - which has a much larger character limit.
Ste
You'd need to rewrite a chunk of Jira, including the database structure.
If you need text fields to be longer, simply use the multi-line text fields which are intended for longer text.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sure, but multi line text fields can have line breaks which cause parsing errors in web requests. Not an unreasonable request :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Line breaks do not cause any problems in Atlassian software, as they are all served up as standard for HTML.
If you're having parsing errors, that's a bug in what you are using to parse the page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thats what I thought as well, Atlassian is currently investigating if it was unintended behavior or not. It happens consistently when trying to POST custom field data as smart values.
In the meanwhile I figured that one can just use smart value functions to replace the linebreaks with something else to prevent the errors.
For example with spaces:
{{issue.fields.customfield_XXX.jsonEncode.replace("\\n", " ")}}
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.