How to auto-navigate to required fields?

Serj Shcherbakov March 28, 2017

Hello, Community!

Please help me to understand, I need to add to my script a part of the code which navigates the user to required fields.

What do I expect: The form scroll to required fields.

My Code:

def selectfield = getFieldByName("SA required")
def userfield = getFieldByName("Solution Architects (EPG)")
def checkboxfield = getFieldByName("SA tasks")
def textfield = getFieldByName("SA request details")

String selectfieldCfVal = selectfield.getValue()


if(selectfieldCfVal == "YES"){
    userfield.setHidden(false)
    checkboxfield.setRequired(true)
    textfield.setHidden(false)
    checkboxfield.setHidden(false)
}else{
    checkboxfield.setRequired(false)
    checkboxfield.setHidden(true)
    userfield.setHidden(true)
    userfield.setFormValue("")
    textfield.setHidden(true)
    checkboxfield.setFormValue("")
}


Hope you help,
Thanks 

1 answer

0 votes
Thanos Batagiannis _Adaptavist_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 28, 2017

Hi Sergey,

Unfortunately this is a bug with the behaviours. We actually have an issue in our backlog - SRJIRA-77. Please vote / start watching for updates regarding it's status. 

regards, Thanos

Serj Shcherbakov March 28, 2017

Thank you for qualification Thanos,

Voted & start watch, hope this request is done before the People going to Mars. laugh

Kidding, 
Kind Regards,

Sergey 

Suggest an answer

Log in or Sign up to answer