tabBoxPrmdt {loadeR} | R Documentation |
Tabset panel with options menu.
tabBoxPrmdt(..., id = NULL, title = NULL, opciones = NULL, open = NULL)
... |
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. |
An HTML element.
Diego Jimenez <diego.jimenez@promidat.com>
library(shiny)
tabBoxPrmdt(id = "id", title = "title", tabPanel("Tab1"))