I'm unable to fetch the initial data in the form meaning the form clears out despite unchecking the reset checkbox. How do I populate the initial data in the form so that the user knows what they have chosen?
I am bumping it up with additional info.
This form is used to populate the database at the backend first. However, it gets reset after I click submit, though it is unchecked.
How can I auto-populate the data in the form whenever it loads so it fetches current information from the database. ?
Hello @Vinyasa_Health!
As part of the Submit action you could write the form data to a Variable resource and try to use this as the default value for the form. The initial state of the variable would be null/blank so the first time the Form is seen all of the values are blank, but you could test this by using a row of data from the DB (if it has any populated rows) as the initial value.
Adding on to the above, you might want to write a query that fetches the current availability data from the backend when the app first loads. This would let you set the initial value of the form inputs!