Hi,
Having a DataCard with data connected to a datasource etc.
How do I set a specific value to the form (or datacard) before I submit the form?
ex. if I want to set the "modified field" timestamp = now() when the press Save on a form?
I have tried using: UpdateContext before the submit, but that only seem to work on variables.
and have tested setting the DataCard, DataCardValue, TextBox...
I would like to do something like this on Button OnSelect:
DataCardTimeStamp.Text = Now();
SubmitForm(EditForm1)
Or if is possible to set it on the EditForm directly..
Or use UpdateContext({DataCardTimeStamp: Now()})...
But nothing seem to work..
Cheers
-Anders