
Last chance! 50% off unlimited learning
Sale ends in
data.frame
An input UI for a data.frame
inputUI(id, ...)
HTML. A set of input fields corresponding to the given row.
character(1)
module id
arguments passed onto methods
Jasper Schelfhout
A new method for this can be added if you wish to alter the default behavior of the pop-up modals in eDT
.
if(interactive()){
library(shiny)
ui <- inputUI('id')
server <- function(input,output,session){
input <- inputServer("id", mtcars[1,])
observe({print(input())})
}
shinyApp(ui, server)
}
Run the code above in your browser using DataLab