shinyjqui (version 0.3.3)

includeJqueryUI: Inject necessary js and css assets to the head of a shiny document (deprecated).

Description

This function has to be called within the ui of a shiny document before the usage of other shinyjqui functions.

Usage

includeJqueryUI()

Arguments

Value

A shiny head tag with necessary js and css assets.

Examples

Run this code
# NOT RUN {
if (interactive()) {
  library(shiny)

  shinyApp(
    ui = fluidPage(
      includeJqueryUI(),
      # other ui codes
    ),
    server = function(input, output) {
      # server codes
    }
  )
}
# }

Run the code above in your browser using DataCamp Workspace