I have a couple of controls in a form with DateTime type. On the init of the form, I am trying to change one of the values to a specific value, however, it is not updating. String controls work fine.
datetime = datetime2str(element.formatDateTimeToday()); Registration_StartRegistrationDateTime.setUTCString(datetime);
I have also tried using this, but it did not work either,
Registration_StartRegistrationDateTime.dateTimeValue(*UTCDATETIME*);
Any ideas what I am doing wrong?
Additionally, I have another issue, when i select a control to edit (upon click), all the other controls are also updated with the same value.
Thanks,
Matthew
*This post is locked for comments
Thanks a lot for your answer. Helped a lot!
Hi Matthew Calleja,
If controls are bound to data source fields you need to change field value instead of control value.
If controls are not bound code like:
Registration_StartRegistrationDateTime.dateTimeValue(DateTimeUtil::utcNow());
should work without any issues.
Regarding your second question you can have such behaviour if multiple controls are bound to same data source filed, in this case value change in one control will change it in all.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,228 Super User 2024 Season 2
Martin Dráb 230,056 Most Valuable Professional
nmaenpaa 101,156