Winston Chang
0f642fe3ad
Add class attribute to ShinySession object
2015-02-27 15:02:09 -06:00
Winston Chang
46844b516a
Remove unneeded 'session' object
...
The 'session' object is no longer needed. Now that the ShinySession object
has proper public and private members, that object can be passed directly.
2015-02-27 15:02:09 -06:00
Winston Chang
b9cef228d9
Use explicit 'self', and make ShinySession portable
2015-02-27 15:02:09 -06:00
Winston Chang
fd71d04000
Use explicit 'private'
2015-02-27 15:02:09 -06:00
Winston Chang
bedb811621
Remove leading dots from public methods
2015-02-27 15:02:09 -06:00
Winston Chang
173736fd69
Set message encoding to UTF-8 instead of native ( Fixes #742 )
2015-02-27 14:55:31 -06:00
Winston Chang
21eea27c4a
Remove duplicated 'destdir' documentation
2015-02-27 14:53:50 -06:00
Winston Chang
defedda891
Switch from RJSONIO to jsonlite (again)
2015-02-23 16:41:36 -06:00
Winston Chang
bb2c8e5fd2
Clean up observeEvent and eventReactive examples
2015-02-23 15:57:27 -06:00
Winston Chang
389adda8ec
Merge pull request #688 from xbhsu/feature/runURL-destination-file
...
Specifying destination file for runURL, runGist, and runGitHub
2015-02-12 13:11:19 -06:00
bhsu
835b65740b
fixed consistency issues
2015-02-12 13:11:00 -05:00
Yihui Xie
61b83c3e34
replace `` with \code{} in Rd
2015-02-11 18:12:14 +08:00
Winston Chang
f157200a9f
Fix Bootstrap URL
2015-02-10 10:58:31 -06:00
Winston Chang
f70fcddaad
Clarify docs for shinyServer and shinyUI
2015-02-10 10:46:51 -06:00
Winston Chang
040ae293fb
Revert switch to jsonlite
...
This reverts commits deffc90 , ab4dc64 , and 0755579 , returning to RJSONIO.
The purpose of this is to prepare for a maintenance release for 0.11
without the switch to jsonlite, to reduce the risk of new bugs.
2015-02-06 10:53:54 -06:00
Winston Chang
dd3cc29af1
Merge pull request #728 from rstudio/bugfix/tab-value-with-icon
...
Fix #725 : Tabs with icons give incorrect values
2015-02-05 15:44:02 -06:00
Joe Cheng
72b9a93088
Don't error when tabPanel has value but tabsetPanel doesn't have id
...
Causes problems now that tabPanel always has a value
2015-02-05 13:38:04 -08:00
Winston Chang
35802c12f6
selectInput: add control for size (height)
2015-02-05 15:30:03 -06:00
Winston Chang
9f8f04caec
selectInput: use form-control for multiple and single
2015-02-05 14:51:40 -06:00
Winston Chang
e84012ec38
Update input docs to explain NULL label ( #727 )
2015-02-05 12:40:14 -06:00
Joe Cheng
128df6a2bf
Fix #725 : Tabs with icons give incorrect values
...
When no explicit value argument was present on tabPanel,
the inner text of the HTML anchor was used. This gave
weird results when an icon was used, since it appears in
the anchor.
The fix is to always use the value parameter, defaulting
it to the title.
2015-02-05 10:23:04 -08:00
Winston Chang
7b76951461
navbarPage: Don't include empty row when header=NULL. Fixes #722
2015-02-05 10:18:24 -06:00
Winston Chang
38d87450e6
Fix typo in docs
2015-02-05 10:17:42 -06:00
Winston Chang
b9c6b84ff5
selectInput: use BS 3 styling when multiple && !selectize. Closes #724
2015-02-04 19:45:04 -06:00
Winston Chang
a4d567e44d
Merge pull request #704 from wch/html-replace2
...
htmlOutput: allow custom container function
2015-02-04 13:30:19 -06:00
Winston Chang
c930cce914
Check for unnamed arguments in ...
2015-02-03 15:55:24 -06:00
Joe Cheng
3e1732b9c0
downloadHandler temp files should have same extension as final download file
2015-02-01 08:37:44 -08:00
Winston Chang
6e7adfadb0
Merge pull request #710 from rstudio/bugfix/fixedpanel-cursor
...
Fix fixedPanel default cursor handling
2015-01-28 14:00:07 -06:00
Winston Chang
4290e2e7b0
Merge pull request #702 from wch/select-width
...
Allow control over selectize width
2015-01-28 11:17:06 -06:00
Winston Chang
4e8632de73
Better documentation of plotOutput height ( #705 )
2015-01-28 11:15:08 -06:00
Joe Cheng
2792fe82a3
Fix fixedPanel default cursor handling
...
Previous to this fix, calling fixedPanel without an
explicit cursor argument would cause an error due to
the vector of possible values being passed as the
actual cursor argument to absolutePanel.
2015-01-27 18:41:29 -08:00
Winston Chang
9f04517801
htmlOutput: allow custom container function
2015-01-26 16:50:09 -06:00
Winston Chang
9954639096
Allow control over selectize width
...
Previously, you could set the width of a selectInput with a pixel value
like 500px, but it wouldn't respect percent widths like 100%. This
commit makes width control the wrapper container's width, so it will
respect percent values.
2015-01-26 15:35:02 -06:00
Dean Attali
563b986591
parseQueryString returns a list, not a vector
2015-01-24 20:42:34 -08:00
Winston Chang
fe5552773d
sliderInput: use width argument ( #675 )
2015-01-23 15:30:20 -06:00
Winston Chang
b7acaf9519
Convert donttest examples; check for interactive() instead
2015-01-22 13:21:23 -06:00
Winston Chang
deffc90531
Remove remaining RJSONIO references
2015-01-22 13:15:01 -06:00
Joe Cheng
f54a6e8513
Add IE=edge to X-UA-Compatible header
2015-01-22 10:52:27 -08:00
Winston Chang
ab4dc641af
Make jsonlite::toJSON convert all objects
...
By default, toJSON won't convert objects with classes that aren't registered
explicitly. This caused errors when converting html_dependency objects.
Setting this option causes jsonlite to convert all objects, including
html_dependency objects.
2015-01-21 15:09:12 -06:00
Winston Chang
075557929a
Switch from RJSONIO to jsonlite
2015-01-21 14:12:53 -06:00
bhsu
00f409d21d
explicit parameter check
2015-01-14 13:34:27 -05:00
bhsu
6aea95b486
fixed application exit
...
fixed on.exit behavior
2015-01-14 09:59:57 -05:00
bhsu
e4dd78b9a4
renamed to destDir and documentation
...
fixed typo
2015-01-14 09:59:38 -05:00
B. Hsu
d940d5a597
updated run-url.R
...
added ability for user to change destination file when using runUrl, runGist or runGitHub
added messages
added messages informing user of final destination of app files
2015-01-13 16:47:53 -05:00
Winston Chang
85bde2b00d
Fix reference to old shiny version number
2015-01-07 22:03:40 -06:00
Winston Chang
b20a15b4ed
Fix label class for non-inline checkbox and radios
2015-01-07 21:06:37 -06:00
Yihui Xie
a67161f521
add a pointer to the DT package
2015-01-06 14:26:19 -06:00
Yihui Xie
8d621e87a0
should inherit params from textInput instead of passwordInput
2015-01-06 14:17:57 -06:00
Winston Chang
a560034614
Fix another URL
2015-01-06 13:21:57 -06:00
Winston Chang
b329c1f94c
Fix URL
2015-01-06 11:33:07 -06:00