mljr-ui · showcase

Combobox

Filterable select — type to search, arrow keys to navigate, Enter to select. Hidden input carries the value.

form combobox

Usage

form.Combobox(form.ComboboxProps{
    Name:    "language",
    Default: "go",
    Options: []form.ComboboxOption{
        {Value: "go",   Label: "Go"},
        {Value: "rust", Label: "Rust"},
        {Value: "ts",   Label: "TypeScript"},
    },
})