如何在Shiny的可编辑数据表中指定文件名和限制列编辑

时间:2019-10-02 19:16:20

标签: r shiny dt

我这里有一个闪亮的应用程序示例。它使用DT包显示可编辑数据表。

要启用下载多页上显示的所有数据,我将server=FALSErenderDT一起使用。

我现在想要实现的是

  1. 限制用户编辑某些特定的列。 以下代码似乎无效。

    editable = list(target = 'cell', disable = list(column = c("Sepal.Length", "Sepal.Width")))

  2. 我想在导出到csv时指定默认文件名,例如data.csv。有可能吗?

如果有人可以帮助我,超级感谢。非常感谢。

    library(shiny)
    library(DT)
    library(dplyr)    
    # UI
    ui = fluidPage(
        selectInput("nrows",
                    "select n entries",
                    choices = 100:150,
                    selected = 100,
                    multiple = FALSE),
        DT::dataTableOutput('tbl'),
                   checkboxGroupInput('datacols', 
                                      label='Select Columns:',
                                      choices= c('Sepal.Length', 'Sepal.Width', 'Petal.Length', 'Petal.Width', 'Specie'),
                                      selected = c('Sepal.Length', 'Sepal.Width', 'Petal.Length', 'Petal.Width', 'Specie'),
                                      inline=TRUE )

    )

    # SERVER
    server = function(input, output) {



        df = reactiveValues()
        observe ({

            df$dat = iris %>% .[1:input$nrows, ]

        })

        # render DT
        output$tbl = renderDT(server=FALSE, {
            datatable(df$dat %>% select(one_of(input$datacols)),
                      editable = list(target = 'cell', disable = list(column = c("Sepal.Length", "Sepal.Width"))),  #"cell",
                      extensions = "Buttons",
                      options = list(
                          dom = "Bfrtip", buttons = list("csv")))

        })


        observeEvent(input[["tbl_cell_edit"]], {
            cellinfo <- input[["tbl_cell_edit"]]
            df$dat  <- editData(df$dat,  input[["tbl_cell_edit"]])
        })

    }
    shinyApp(ui=ui, server = server)

1 个答案:

答案 0 :(得分:1)

要禁用某些列进行编辑,您必须提供列索引,而不是列名称。此外,关键字是readarray index < <(xmlstarlet sel -t -m //icon -c . -n ../../file.xml) ,而不是columns

column

要指定文件名,请执行以下操作:

editable = list(target = 'cell', disable = list(columns = c(1,2)))