How can I disable the proceed button when user unselect the checkbox in Vdesginer 2.0?

How can I disable the proceed button when the user unselects the checkbox in Vdesgin 2.0?
there is only one Onselect event in a checkbox

@mihil.kumar

  1. First, uncheck the “Enable” property in the button’s properties.

Screenshot from 2024-05-01 15-05-28

  1. Then, set the “OnSelect” event for the checkbox.

  2. Remember, the checkbox returns a list in the debugger, so we’ll use the LEN function to create a Business Rules Engine (BRE).
    Screenshot from 2024-05-01 15-06-49

  3. Map this checkbox to an entity to store the selected data.
    Screenshot from 2024-05-01 15-07-27

  4. Choose the “Enable/disable” task to activate the button when the checkbox is checked.

  5. Set the BRE to check if the length of the entity is not equal to zero. This means that some data is selected.

  6. Now, set another “Enable/disable” task to deactivate the button when the checkbox is unchecked.

  7. Set the BRE to check if the length of the entity is equal to zero. This indicates that no data is selected

1 Like