Frage

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?

War es hilfreich?

Lösung

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top