Hi all,
On my issue screen creation, when I click on the create button, transition Create is run.
I would like to specify some rules in the validator's part of this transition.
In my case, I have :
- a listbox (called Type) where I must choose between the following values : Project, GPA, Versioning Service, DBA
- a listbox (called Project) containing a list of available projects
- a textbox (called RP Code)
I would like to control the following :
If Type.value="Project" then
- listbox Project must be specified
- textbox RP Code must be specified too
End if
If we choose the others values of Project listbox (GPA, Versioning Service or DBA), listbox Project is not mandatory as textbox RP Code.
I think I will have to use cfValues['Project'], cfValues['RP Code'] and cfValues['Type'], but I don't know how.
Thanks a lot.
Christophe