Create a table output element with sortable rows
Source:R/sortableTableOutput.R
sortableTableOutput.Rd
Render a standard HTML table with table rows sortable by drag and drop. The
order of table rows is recorded in input$<outputId>_order
.
Examples
## Only run this example in interactive R sessions
if (interactive()) {
shinyApp(
ui = fluidPage(
verbatimTextOutput("rows"),
sortableTableOutput("tbl")
),
server = function(input, output) {
output$rows <- renderPrint({input$tbl_row_index})
output$tbl <- renderTable(mtcars, rownames = TRUE)
}
)
}