mljr-ui · showcase

Select

Dropdown select with custom arrow, bound to a Datastar signal.

form select

Usage

form.Field(form.FieldProps{Label: "Country"},
    form.Select(form.SelectProps{
        Signal: "country",
        Options: []form.SelectOption{
            {Value: "", Label: "Pick one…"},
            {Value: "at", Label: "Austria"},
            {Value: "de", Label: "Germany"},
        },
    }),
)