cancel
Showing results for 
Search instead for 
Did you mean: 

Control events in visibilty conditions

Former Member
0 Kudos

Hi All;

Is it possible to control event in visibilty conditions?

for exmp

IF event name select visibilty condition true else false ..... like this????

can i do this in vc?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

hi Thomas;

thank u for your replay. But i want to learn in my table view visibilty condition. I want to enter formula controlling my select event. Is this possible to control events in enter formula with their names or something like this.

Former Member
0 Kudos

Hi Ozan,

you have to solve it with data stores as Thomas mentioned. When you select a record from your table you must pass the selected record/values to a data store. in the visibility condition you can refer to the data store values.

Best Regards,

Marcel

Former Member
0 Kudos

Hello Ozan,

you can ' t do it directly. You have to use a data store.

For example you have a form which can raise the two events "select" and "unselect". Insert a data store and an element in this store "visibility" of type boolean (preselect false). Then put two lines from the form to the data store. For the first one use the event "select" and set visibility=true, for the second one "unselect" and visibility=false. Now you can use the data store element for the visibility condition.

Kind regards

Thomas