Hi all,
this is my behavior and I don't know why dosent work:
def field1 = getFieldById("customField_20600")
def field2 = getFieldById("customField_10001")
def fieldValue = field2.value()
if( fieldValue == "my chooise"){
field1.setHidden(false)
} else {
field1.setHidden (true)
}
When in the issue I compile field2 with my choose, field1 remain in hide
thx in advance for your time
Hi @Davide Cascapera Apply Scriptrunner behaviour on Field 2 :-
Try below script it should work :-
def field1 = getFieldById("customField_20600")
def field2 = getFieldById("customField_10001")
if( field2.getValue()== "my chooise"){
field1.setHidden(false)
} else {
field1.setHidden (true)
}
Thanks
V.Y
Hi Vikrant thx for ur suggestion but doesnt work, I tried now and the field1 continued to stay in hiding when I select "my chooise" in field2
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Davide Cascapera i have tested the script on my machine , Script is working fine :-
Have you applied behaviour script on Select list field ?
def application = getFieldByName("Application Count")//Select list field
def description = getFieldByName("Description")//text field
if (application.getValue() == "1"){
description.setHidden(false)
} else {
description.setHidden(true)
}
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.
before dependent leave I should see a field named Settlements
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know that the syntax is correct and the behavior should be working, I think maybe there is another bheavior goes in conflict with mine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Davide Cascapera Thanks for the screenshot, Custom Request Type is not a Custom field, this is Scripted field or Programmatically field, that's why behaviour is not working.
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.
You’re Welcome 😊
Happy to help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
From the script you provided, I'll take it that you are working on server, rather than on cloud that you have stated in this thread. I'll change the tags.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.