Create a page with a sidebar

pageWithSidebar(headerPanel, sidebarPanel, mainPanel)

Arguments

headerPanel The headerPanel with the application title
sidebarPanel The sidebarPanel containing input controls
mainPanel The mainPanel containing outputs

Create a page with a sidebar

Value

A UI defintion that can be passed to the shinyUI function

Description

Create a Shiny UI that contains a header with the application title, a sidebar for input controls, and a main area for output.

Note

This function is deprecated. You should use fluidPage along with sidebarLayout to implement a page with a sidebar.

Examples

# Define UI shinyUI(pageWithSidebar( # Application title headerPanel("Hello Shiny!"), # Sidebar with a slider input sidebarPanel( sliderInput("obs", "Number of observations:", min = 0, max = 1000, value = 500) ), # Show a plot of the generated distribution mainPanel( plotOutput("distPlot") ) ))
<div class="container-fluid"> <div class="row-fluid"> <div class="span12" style="padding: 10px 0px;"> <h1>Hello Shiny!</h1> </div> </div> <div class="row-fluid"> <div class="span4"> <form class="well"> <div> <label class="control-label" for="obs">Number of observations:</label> <input id="obs" type="slider" name="obs" value="500" class="jslider" data-from="0" data-to="1000" data-step="1" data-skin="plastic" data-round="FALSE" data-locale="us" data-format="#,##0.#####" data-smooth="FALSE"/> </div> </form> </div> <div class="span8"> <div id="distPlot" class="shiny-plot-output" style="width: 100% ; height: 400px"></div> </div> </div> </div>