tabBoxPrmdt {loadeR} | R Documentation |
Tabset panel with options menu.
Description
Tabset panel with options menu.
Usage
tabBoxPrmdt(..., id = NULL, title = NULL, opciones = NULL, open = NULL)
Arguments
... |
tabPanel() elements to include in the tabset. |
id |
If provided, you can use input$id in your server logic to determine which of the current tabs is active. The value will correspond to the value argument that is passed to tabPanel(). |
title |
Text or input to add on the opposite side of the tabs. |
opciones |
list of html options to add on the footer of the tabset. |
open |
Class to assign first option, for example to start open. |
Value
An HTML element.
Author(s)
Diego Jimenez <diego.jimenez@promidat.com>
Examples
library(shiny)
tabBoxPrmdt(id = "id", title = "title", tabPanel("Tab1"))
[Package loadeR version 1.2.0 Index]