This commit is contained in:
NoryiE
2025-11-02 09:56:26 +00:00
parent 79ae1afede
commit bec161fa1a

View File

@@ -16,7 +16,7 @@ local combo = main:addComboBox()
{text = "Spain"}, {text = "Spain"},
{text = "Italy"} {text = "Italy"}
}) })
:setPlaceholder("Select country...") :setSelectedText("Select country...") -- Placeholder text
:setAutoComplete(true) -- Enable filtering while typing :setAutoComplete(true) -- Enable filtering while typing
-- Handle selection changes -- Handle selection changes
@@ -34,8 +34,6 @@ end)
|text|string|""|The current text value of the input field| |text|string|""|The current text value of the input field|
|cursorPos|number|1|Current cursor position in the text input| |cursorPos|number|1|Current cursor position in the text input|
|viewOffset|number|0|Horizontal scroll position for viewing long text| |viewOffset|number|0|Horizontal scroll position for viewing long text|
|placeholder|string|"..."|Text shown when the input is empty|
|placeholderColor|color|gray|Color used for placeholder text|
|autoComplete|boolean|false|Enables filtering dropdown items while typing| |autoComplete|boolean|false|Enables filtering dropdown items while typing|
|manuallyOpened|boolean|false|Indicates if dropdown was opened by user action| |manuallyOpened|boolean|false|Indicates if dropdown was opened by user action|