我想在闪亮的模块中有一个可编辑的 DT。当我更改 DT 中的值时,表会更新,并且数据表中的消息为空:
“未找到匹配的记录”
我的代码如下:
模块:
modDtUi <- function(id){ # UI module
ns = NS(id)
DT::dataTableOutput(ns('x1'))
}
modDt <- function(input, output, session, data){ # Server module
x <- data
output$x1 <- DT::renderDataTable(x, selection = 'none', editable = TRUE)
proxy <- dataTableProxy('x1', session = session)
observeEvent(input$x1_cell_edit, {
info = input$x1_cell_edit
str(info)
print(info)
i = info$row
j = info$col
v = info$value
x[i, j] <<- DT::coerceValue(v, x[i, j])
replaceData(proxy, x, resetPaging = FALSE, rownames = FALSE)
})
}
flexdashboard 中的应用程序:
```{r}
modDtUi("editable")
```
```{r}
callModule(modDt,"editable", data = iris)
```
没有模块它工作得很好,但我不能用闪亮的模块得到相同的结果。
谢谢