logoWindUI Shiny

Dropdown

Dropdown selector with multi-select.

Dropdown

Creation:

local Dropdown = Tab:Dropdown({ 
  Title="Dropdown", 
  Desc="Description", 
  Values={"A","B","C"}, 
  Value={"A"}, 
  Multi=true, 
  AllowNone=true, 
  Callback=function(value) end 
})

Methods:

MethodDescription
SetTitle(title)Update title
SetDesc(desc)Update description
Select(value)Select item
Refresh(values)Update values
Lock()Lock dropdown
Unlock()Unlock dropdown
Destroy()Remove dropdown

On this page