Hello
Can I somehow set the minimum lenght (like 20 symbols, for example) for Description field for issues, created via customer's portal?
Thanks in advance for any options.
Not out of the box. You would need scripting or a plugin. By definition the Description field is unlimited text.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You can not do it out of the box.
You would need an add-on for it. For example you could do it with the Power Scripts add-on:
You could create a validator with a code like this:
if (length(description) < 20) {
return false, "The description field must be 20 or more characters";
}
return true;
You can read more about validators here:
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.
@Katya Godneva You are most welcome!
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.