Difference between revisions of "UI.Combobox"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2023.1<br/> '''Class:''' UI<br/> === Description === Creates Combobox widgets. The widget can be a '''Combobox''' or a '''Combobo...")
(No difference)

Revision as of 03:36, 15 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()

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)