I'm trying to assist one of my teammates with the Highlight macro, and I'm having a devil of a time getting content in the middle of a sentence highlighted. I can get it to work if I want to highlight content at the beginning of a sentence (and then have subsequent content un-highlighted), but not if I want to have the beginning plain and end highlighted. Is there some flaw in the Highlight macro that prevents it from being placed inline properly? Am I doing something wrong?
Process:
Examples:
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 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.