Re: [elm-discuss] Help with an update function

2016-11-26 Thread Fed Reggiardo
I tried this with a List yesterday and failed. However, since I wasnt sure if this was the best approach i didnt go crazy trying to make it work. Let me play around a bit and see what i come up with. Thanks again -- You received this message because you are subscribed to the Google Groups

Re: [elm-discuss] Help with an update function

2016-11-26 Thread Thomas Coopman
Yes :) On Sat, 26 Nov 2016 at 09:36 Fed Reggiardo wrote: > Thomas, thanks! The problem is that I don't know how many inputs I'll > need. So are you saying I should add them into a Dict as created and > access them from there by mapping over the Dict from an update function? >

Re: [elm-discuss] Help with an update function

2016-11-26 Thread Fed Reggiardo
Thomas, thanks! The problem is that I don't know how many inputs I'll need. So are you saying I should add them into a Dict as created and access them from there by mapping over the Dict from an update function? On Saturday, November 26, 2016 at 2:31:51 AM UTC-6, Thomas Coopman wrote: > >

Re: [elm-discuss] Help with an update function

2016-11-26 Thread Thomas Coopman
I'm not sure if I completely understand your problem, so if this is not correct, ignore me. You cannot dynamically change your model, but you can use a List or a Dict to store multiple inputs. I would probably choose a Dict String (List Note) On Sat, 26 Nov 2016, 08:33 Fed Reggiardo,