For examle:
Tree columns: A, B, C
One issue: X. In this issue in options (shortcut 'E') i have checkbox "OK". This issue is in column B.
If the checkbox is checked then it will not be possible to move the task to column A.
It is possible?
Hello,
If you are on Cloud, then you can use the Regular Expression Check validator.
If you are on Server, then you would need an add-on. For example, you could use the Power Scripts add-on:
You can create your own validator with the Power Scripts add-on. The code for this validator would look like this:
if (#{your checkbox name} == "E") {
return false;
} else {
return true;
}
You can find more info about validators here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows#Customizingworkflows-Forvalidator:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.