Difference between revisions of "UI.Combobox"

From GiderosMobile
 
Line 46: Line 46:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
{{GIDEROS IMPORTANT LINKS}}
+
{{UI}}

Latest revision as of 08:18, 17 October 2023

Available since: Gideros 2023.1
Class: UI

Description

Creates Combobox widgets. The widget can be a Combobox or a ComboboxButton.

UI.Combobox.new()

Examples

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)