Idris2Doc : Text.HTML.Select

Text.HTML.Select

(source)

Definitions

dataSelectEntry : Type->Type
Totality: total
Visibility: public export
Constructors:
Title : String->SelectEntryt
Entry : t->String->SelectEntryt
selectEntries : Sinke=>List (SelectEntryt) -> (t->Bool) -> (t->e) ->List (AttributeSelect) ->HTMLNode
Totality: total
Visibility: export
selectFromListBy : Sinke=>Listt-> (t->Bool) -> (t->String) -> (t->e) ->List (AttributeSelect) ->HTMLNode
  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 : Sinke=>Eqt=>Listt->Maybet-> (t->String) -> (t->e) ->List (AttributeSelect) ->HTMLNode
  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