ComboBox
ComboBox
Creation
MyRandomMenu:ComboBox({
name = "MyComboBox",
text = "MANY ITEMS",
items = {"OOO", {text = "Boop", on_callback = function() log("Booped") end}},
value = 1,
on_callback = function(item)
log("Selected item", tostring(item:SelectedItem()))
log("Index", tostring(item:Value()))
end
})
MyRandomMenu:ComboBox({
name = "MyComboBox2",
text = "ITEMS",
items = {"OOO", "Simple", "Yes"},
value = 1,
on_callback = function(item)
log("Selected item", tostring(item:SelectedItem()))
log("Index", tostring(item:Value()))
end
})Parameters
Parameter
Type
Description
Functions
Get
Function
Return Type
Description
Set
Function
Description
Other
Function
Description
Last updated