Hi Community !
Use case : In Multiple select list, we need to block the creation of issue if the user selected more of 3 values.
We have Scriptrunner, so I think I can to do with a validator at the create like :
Num = getCustomFieldValue (Myselectlist).size()
If (Num>3) {invalidexception ...etc.... }
But size() seems to be not OK.
Do you have another idea to do that ? with Behaiviour may be ?
thanks in advance,