Use within a card to display toolbar

setup.toolbar.buttons(...)

Arguments

...

The list of buttons to display

Value

HTML code of a container containing items to be inserted in the toolbar

Note

For more information on the features of a toolbar within a card, visit the examples section of the help documentation

Examples

# \donttest{ setup.toolbar.buttons(list(maximize=TRUE,collapse=TRUE,close=TRUE))
#> <div class="panel-toolbar" role="menu"> #> <a href="#" class="btn btn-panel hover-effect-dot js-panel-collapse waves-effect waves-themed" data-toggle="tooltip" data-offset="0,10" data-original-title="Collapse"></a> #> <a href="#" class="btn btn-panel hover-effect-dot js-panel-fullscreen waves-effect waves-themed" data-toggle="tooltip" data-offset="0,10" data-original-title="Fullscreen"></a> #> <a href="#" class="btn btn-panel hover-effect-dot js-panel-close waves-effect waves-themed" data-toggle="tooltip" data-offset="0,10" data-original-title="Close"></a> #> </div>
# }