如何在shinydashboard中禁用tabPanel?

时间:2016-05-23 03:09:22

标签: r tabpanel shinydashboard

有没有办法在单击actionButton之前禁用tabPanel?我尝试使用shinyjs这样做,但这不起作用。目前我的ui.R有以下代码。我想禁用“过滤器”tabPanel,直到单击loadButton。 `

body <- dashboardBody(
    useShinyjs(),
    tabsetPanel(id = "tabs", type = 'pills',
        tabPanel("Load", dataTableOutput("loadTab")),
        tabPanel("Filter", id='filterTab',dataTableOutput("filteredResults"))
    ))
sidebar <- dashboardSidebar(
        sidebarMenu(
         selectInput(inputId = "datasetName",label = 'Dataset',  choice=c('Cancer','Normal')),
         actionButton("loadButton", label = "Load")
        ))

` 任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:3)

我使用了shinyjs。 `

    jsCode <- "
shinyjs.disableTab = function() {
    var tabs = $('#tabs').find('li:not(.active) a');
    tabs.bind('click.tab', function(e) {
        e.preventDefault();
        return false;
    });
    tabs.addClass('disabled');
}
shinyjs.enableTab = function(param) {
    var tab = $('#tabs').find('li:not(.active):nth-child(' + param + ') a');
    tab.unbind('click.tab');
    tab.removeClass('disabled');
}

” ` 然后根据需要启用和禁用选项卡。