Skip to content

Instantly share code, notes, and snippets.

@kevinushey
Created September 17, 2013 21:11
Show Gist options
  • Select an option

  • Save kevinushey/6600690 to your computer and use it in GitHub Desktop.

Select an option

Save kevinushey/6600690 to your computer and use it in GitHub Desktop.
shinyGridster test
library(shiny)
shinyServer( function(input, output, session) {
})
library(shinyGridster)
library(shiny)
shinyUI( bootstrapPage(
gridster(width=300, height=300,
gridsterItem(row=1, col=1, sizex=1, sizey=1,
selectInput("select-input", label="Bet you can't click my items!",
choices=c("Apple", "Banana", "Cherry", "Date"),
multiple=TRUE
)
)
)
) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment