I'm trying to make a web page in elm with several forms on. Different forms will show at different times.
I want to read the data from the onSubmit (Command/Message) into a method.
Everyting I can find seems to say I need to have a message for each for change to the form as users type, so if I have a form with 20 data points I need a separate message to record each change.
I find this odd, surely the onSubmit can pickup the form data and return it as a part of the message I wish to work with. Otherwise I have to have soo many separate messages each to handle and do the exact same thing, carefully named to avoid collisions.
Is there something I'm missing?
Thanks
Matt