Idris2Doc : Text.HTML.Select

Text.HTML.Select

(source)
Utilities for working with `<select>` elements

Definitions

dataSelectEntry : Type->Type
Totality: total
Visibility: public export
Constructors:
Title : String->SelectEntryt
Entry : t->String->SelectEntryt
selectEntries : List (SelectEntryt) -> (t->Bool) -> (t->e) ->List (AttributeSelecte) ->Nodee
Totality: total
Visibility: export
selectFromListBy : Listt-> (t->Bool) -> (t->String) -> (t->e) ->List (AttributeSelecte) ->Nodee
  Create a `<select>` element displaying the options in the given
list.

@values : the list of options
@sel : true if the given item in the list should be selected
@display : how to display an option at the UI
@toEvent : how to convert an option to an event
@attrs : additional attributes

Totality: total
Visibility: export
selectFromList : Eqt=>Listt->Maybet-> (t->String) -> (t->e) ->List (AttributeSelecte) ->Nodee
  Like `selectFromListBy` but uses an optional initial value
to determine the initially selected value.

@values : the list of options
@init : the initially selected option (if any)
@display : how to display an option at the UI
@toEvent : how to convert an option to an event
@attrs : additional attributes

Totality: total
Visibility: export