Skip to content

Error in CH 17, block 17-javascript-2 #374

@martinherrerias

Description

@martinherrerias

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions