I am using a page with form elements - input text, star rating and slider.
Star rating and the slider components update the database right away with any changes to their value.
The issue is If the user enters text into a text input field and then makes a change to a slider field. As soon as the slider is updated, it immediately saves itself to the database and the changes to the text input are lost.
- I have not programmed any actions on the slider. The behavior seems to be built in.
- There doesn’t seem to be a way to fire an action on the input text boxes.
Is there a way around this? The only thing I can see is making an action on each slider/star component that updates all of the field values back to the database. This does not seem ideal. I have 10 sliders and 10 text inputs on the page. That is a lot of round trips to the database for 20 inputs.
Ideas or suggestions? Thanks