dropdown_menu_output {semantic.dashboard} | R Documentation |
Create a dropdown menu output.
Description
UI-side function for dynamic dropdownMenu.
Usage
dropdown_menu_output(outputId)
dropdownMenuOutput(outputId)
Arguments
outputId |
Id of the output. |
Value
A dropdown menu that can be passed to dashboardHeader
Functions
-
dropdownMenuOutput
: Create a dropdown menu output (alias fordropdown_menu_output
for compatibility withshinydashboard
)
Examples
## Not run:
dropdownMenuOutput("dropdown")
output$dropdown <- renderDropdownMenu({
dropdownMenu(messageItem("MichaĆ", "Test message", color = "teal"),
messageItem("Marek", "Another test!", icon = "warning", color = "red"))
})
## End(Not run)
[Package semantic.dashboard version 0.2.1 Index]