shiny (version 0.2.3)

reactiveUI: UI Output

Description

Experimental feature. Makes a reactive version of a function that generates HTML using the Shiny UI library.

Usage

reactiveUI(func)

Arguments

func
A function that returns a Shiny tag object, HTML, or a list of such objects.

Details

The corresponding HTML output tag should be div and have the CSS class name shiny-html-output (or use uiOutput).

See Also

conditionalPanel

Examples

Run this code
output$moreControls <- reactiveUI(function() {
    list(

    )
  })

Run the code above in your browser using DataCamp Workspace