library(shiny)
library(shinyjqui)
ui <- fluidPage(
verbatimTextOutput("order"),
actionButton('save', "Save"),
actionButton("load", "Load"),
sortableTableOutput("tbl")
)
server <- function(input, output) {
output$order <- renderPrint({
cat("Rows order:\n")
input$tbl_order
})
output$tbl <- renderTable(head(mtcars), rownames = TRUE)
observeEvent(input$save, {
jqui_sortable("#tbl", operation = "save")
})
observeEvent(input$load, {
jqui_sortable("#tbl", operation = "load")
})
}
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.