WIP:Multi=tab
All Linn Power Amplifiers |
Pistonik drive units |
All Linn Loudspeakers |
Akurate Kustom,Sneaky Sekrit Products |
Tech Tips |
Linn control solutions |
Owners Manuals |
Linn Turntables |
|
|
Last updated: 25 May 2026
// Example: A DropdownWidget that contains a menu of options. // Note that the DropdownWidget is not a menu itself, but a container for a menu. var dropDown = new OO.ui.DropdownWidget( { label: 'Dropdown menu: Select one option', // The menu is composed within the DropdownWidget menu: { items: [ new OO.ui.MenuOptionWidget( { data: 'a', label: 'First' } ), new OO.ui.MenuOptionWidget( { data: 'b', label: 'Second (disabled option)', disabled: true } ), new OO.ui.MenuOptionWidget( { data: 'c', label: 'Third' } ), new OO.ui.MenuOptionWidget( { data: 'd', label: 'The fourth option has a long label' } ), new OO.ui.MenuOptionWidget( { data: 'e', label: 'Fifth' } ) ] } } ),