UI.Combobox
From GiderosMobile
Available since: Gideros 2023.1
Class: UI
Description
Creates Combobox widgets. The widget can be a Combobox or a ComboboxButton.
UI.Combobox.new()
Example
A Combobox
local mydata = {"a", 1, 2, "b", 3, "c"}
local gui = UI.Combobox.new()
gui:setDimensions(64, 64)
gui:setPosition(50, 50)
gui:setData(mydata)
gui:setCurrent(2)
function gui:onWidgetChange(w)
print(w.index)
end
local screen=UI.Screen.new() -- needed to add the calendar
screen:ui(gui)
A ComboboxButton
local mydata = {"a", 1, 2, "b", 3, "c"}
local gui = UI.ComboboxButton.new()
gui:setDimensions(64, 64)
gui:setPosition(50, 50)
gui:setData(mydata)
gui:setCurrent(2)
function gui:onWidgetChange(w)
print(w.index)
end
local screen=UI.Screen.new() -- needed to add the calendar
screen:ui(gui)