I have a date picker and a “submit date” button, i want to save / update the value only when user clicks on the submit Done button.
How do i do that, as i can’t access the date picker value for some reason?
I can’t use form data value - seems to only register input boxes as form fields.
I can’t use “on change event value” as this is happening on clicking the submit button and not happening on changing of the date (not an on change workflow).
When you add the date picker, it comes with a variable that stores its value, you can just send it to your backend, you don’t need the value to be inside form data. For now, form data only supports text inputs. We are working to improve that.