closed
Public

I embedded checkboxes in a treeview and tried to create some simple dependencies. If I select checkbox_1 then checlbox_2 should be selected.

But there ar no events like “Element Selected” and “Element Deselected” and if I connect to “Element Clicked” it is never called:

For Element: CheckBox_35

Element Clicked

Is Condition “{CheckBox_35.selected} == Yes” Satisfied?

Yes

Change Element “CheckBox_39” to “Selected” State

No

2 answers

Hello Andre,

We will add more specific events for radio button/checkbox in future releases. Meanwhile the Element Clicked can also work on checkbox. The {CheckBox_35.selected} property should compare with 1 or true, like this:

For Element: CheckBox_35

Element Clicked

Is Condition “{CheckBox_35.selected} == true” Satisfied?

Yes

Change Element “CheckBox_39” to “Selected” State

No

You will see it works. Also you can replace true with 1, which will work as well.

#1

Hi Vivi,

thanks. With “1” it works.

Andre

#2

This question is now closed