Skip to content

Instantly share code, notes, and snippets.

@jpd527
jpd527 / server.R
Last active May 30, 2017 10:44
Drag n drop list Shiny JS
library(shiny)
shinyServer(function(input, output,session) {
output$list <- renderUI({
sortListInput("sortable",c(test1="one",test2="two"))
})
})