use values instead of names for radioButtons due to #340

the problem was revealed from #377
This commit is contained in:
Yihui Xie
2014-01-27 22:51:56 -06:00
parent ecf4c5c104
commit 31c071d086

View File

@@ -14,12 +14,12 @@ shinyUI(fluidPage(
c(Comma=',',
Semicolon=';',
Tab='\t'),
'Comma'),
','),
radioButtons('quote', 'Quote',
c(None='',
'Double Quote'='"',
'Single Quote'="'"),
'Double Quote')
'"')
),
mainPanel(
tableOutput('contents')