Expand my Community achievements bar.

How can one button select another button in the form?

Avatar

Level 1

This is likely a stupid question, but hey, I could use some advice. I want to create a button that when pressed, will highlight a check box in another place on the form.Any suggestions would be most appreciated.

Mike

1 Reply

Avatar

Former Community Member

Mike,

On the button click event set the value of the check box to 1. For example,

// form1.page1.btn::click - (JavaScript, client)


form1.page1.cb.rawValue = 1;

The attached toggles the check box on and off.

Steve