Hi all,
This is my first post here so sorry if this issue has been discussed before.
in an app I'm developing, there's a checkbox that it's "Oncheck" is fired in relation of a selection of item in a dropdown (so the user wont need to select the value and check the checkbox)
the oncheck triggers two operations:
1. send email
2. send SMS
the formulas seems to work fine, but my issue is that every time i navigate from the main gallery screen to the screen with the form where the gallery item is selected, the Oncheck fires again. so the user gets an e-mail and a sms again, he only needs to get them when the dropdown value is changed
this is the formula for the "Edit" button of the gallery item in the main screen:
ResetForm(Ticket_frm);
Set(
Varformdata,
Maint_tct.Selected
);
Navigate('Tickets edit');
Set(
Varnextln,
Maint_tct.Selected.ID
);
Set (
Vardisplaymode,
true
)
This is the Oncheck Default formula - where is set the oncheck to fire when a value is selected in the dropdown:
If(IsBlank(DataCardValue16.Selected.Value),false,true)
Any Ideas?

Report
All responses (
Answers (