Change border if checkbox is checked
I have a button called Button1 and a checkbox called Checkbox1. Button1 currently has a red thin border. If Checkbox1 is checked, I would like the border to change to green medium. Is this possible?
I have a button called Button1 and a checkbox called Checkbox1. Button1 currently has a red thin border. If Checkbox1 is checked, I would like the border to change to green medium. Is this possible?
One more thing. Is it possible to change the border color and the fill color if a button if text is entered in a text field. Example, if text is entered in Text Field1, can the border color and the fill color of Button1 be changed from red to green?
Enter the following custom calculation script in the text field:
if(event.value)
{
//Your script if the text field contains a value
}
else
{
//Your script if the text field does not contain a value
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.