Hi,
Is it possible to execute multi commands in the onSelect of an icon?
Case at hand: I've added a delete icon button. in that button I perform a REMOVE() command on the selected item in the gallery. After the delete he set the selected value in the gallery to the first item.
So fare so good: Next the gallery there are several textboxes that are linked to the selected item in the gallery. This is done with a variable. Also works fine, but when clicking the delete icon button I will also need to reset the variable to the selected record. This way the textboxes are also updated. But I don't seem to be able to do something link this:
OnSelect = Remove('app.VGD_Aanvraag'; Gal_KMVergoeding_3.Selected); Set(varRecord;Gal_KMVergoeding_3.Selected)
OR
OnSelect = Remove('app.VGD_Aanvraag'; Gal_KMVergoeding_3.Selected) AND Set(varRecord;Gal_KMVergoeding_3.Selected)
Anyone any ideas on how to fix this?