-
Notifications
You must be signed in to change notification settings - Fork 112
Open
Description
The explanation below does not match the code in the example.
- Currently:
library(shiny)
fluidPage(
titlePanel("Hello Shiny"),
textInput("act", "Ipt")
)
<div class="container-fluid">
<h2>Hello Shiny</h2>
<div class="form-group shiny-input-container">
<label class="control-label" for="act">Ipt</label>
<input id="act" type="text" class="form-control" value=""/>
</div>
</div>
- Should probably read:
library(shiny)
fluidPage(
titlePanel("Hello Shiny"),
actionButton("act", "Ipt")
)
<div class="container-fluid">
<h2>Hello Shiny</h2>
<button id="act" type="button" class="btn btn-default action-button">Ipt</button>
</div>
Metadata
Metadata
Assignees
Labels
No labels