Question

Say I have a record like this:

type Library = { books : [Book] }
type Book = { title : String, year : Int }

And I want to dynamically create a UI to fill the Library record. I would want a button "Add" which would create two text fields per book.

And editing inside any text field would immediately be synced in the record structure.

How could I achieve this with elm 0.12?

Était-ce utile?

La solution

Learn about interactive UI elements and understand the TODO list example, which is pretty much isomorphic with what you want to acquire.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top