Winston Chang
ead508c0d0
Preserve attributes in child tags
2013-06-20 12:16:51 -05:00
Winston Chang
360f1af32f
Export tagSetChildren and tagAppendChildren
2013-06-19 15:01:45 -05:00
Winston Chang
6ba9534da4
In tag functions, drop NULL attributes
2013-06-19 00:25:46 -05:00
Winston Chang
c16ef96754
Don't use named list items for selectInput and radioButtons
...
The names aren't used anyway, and this matches previous behavior (Shiny 0.6.0)
2013-06-18 23:53:30 -05:00
Winston Chang
e728491aa2
Refactor checkboxGroupInput
2013-06-18 23:52:41 -05:00
Winston Chang
ce356fa266
Fix handling of empty tags
2013-06-18 23:52:13 -05:00
Winston Chang
5e46323ca3
Refactor tag()
...
This is much faster when there are large lists of children (and the code is
much simpler!)
2013-06-18 23:33:28 -05:00
Winston Chang
0a7d047246
Add tests for creating nested tags
2013-06-18 22:40:17 -05:00
Winston Chang
3fa534a3eb
Add tests for adding children
2013-06-18 22:39:34 -05:00
Winston Chang
c6405f70d3
Add tagSetChildren() and tagAppendChildren()
2013-06-18 20:12:04 -05:00
Winston Chang
e8021acccd
Speed up radioButtons when there are many choices
2013-06-17 23:49:50 -05:00
Winston Chang
39b0da2a3f
Speed up selectInput when there are many choices
2013-06-17 23:44:13 -05:00
Winston Chang
253c92bab7
Bump version to 0.6.0.99 for development
2013-06-12 10:53:51 -05:00
Joe Cheng
c10850118d
Merge pull request #170 from hadley/master
...
Fix typo
2013-06-11 13:26:14 -07:00
Joe Cheng
4f017e9173
Remove annoying title="foo" tooltip on all tabset tabs
2013-06-11 09:19:49 -07:00
Joe Cheng
5ed46c82cb
Document observer methods
2013-06-11 09:18:57 -07:00
hadley wickham
64391e906d
Update reactives.R
...
Add newline (guessing that's how it's supposed to be)
2013-06-11 10:37:02 -05:00
Joe Cheng
47b4ee07ab
Merge pull request #165 from trestletech/master
...
Export validateCSSUnit function
2013-06-10 11:32:01 -07:00
trestletech
3000cbf763
Reorder namespace using latest roxygen2 code.
2013-06-07 16:33:19 -05:00
trestletech
76b3d314a8
Exported validateCSSUnit function.
2013-06-05 15:15:54 -05:00
Winston Chang
ba646de0ad
Bump version to 0.6.0
v0.6.0
2013-06-05 12:12:46 -05:00
Winston Chang
395f746a05
Update NEWS
2013-06-04 22:20:07 -05:00
Winston Chang
f7e57cd398
Update NEWS
2013-06-04 21:21:26 -05:00
Winston Chang
3ea6d97ed2
Documentation updates
2013-06-04 21:21:26 -05:00
Winston Chang
affc0d8b67
Remove sendJavascript
2013-05-31 10:48:39 -05:00
Joe Cheng
c637e310e9
Merge pull request #164 from jcheng5/suspend-bugfix
...
Fix several bugs relating to suspendWhenHidden
2013-05-28 08:58:52 -07:00
Joe Cheng
6ee7dcdd51
Fix several bugs relating to suspendWhenHidden
...
- If an output is bound in the UI before it exists on the server, the
server will suspend the new output until something else causes
manageHiddenOutputs to be triggered. The refactor in shiny.R sets
the suspended flag to .shouldSuspend.
- As part of the previous refactor, we don't set suspendOnHidden in
defineOutput; instead we leave it empty and .shouldSuspend knows
what the default should be.
- In shiny.js, unbound controls were not being suspended. This was
fixed by having sendOutputHiddenState be stateful; anything in
a visible state that disappears on the next iteration is marked
as hidden. Also unbindAll now calls sendOutputHiddenState.
2013-05-27 12:52:33 -07:00
Joe Cheng
23470267fe
Merge pull request #163 from jcheng5/app-object
...
Run apps without creating files on disk
2013-05-24 22:07:36 -07:00
Winston Chang
4a92bb91df
Initialize slider at correct time
2013-05-24 18:58:47 -05:00
Joe Cheng
69522c422c
Fix rendering issues when slider gets too wide
...
Synced to jslider commit (from rstudio/jslider fork):
6de6ef7b2c788cbcec74dd51e0008e12247e6638
2013-05-23 12:02:43 -07:00
Joe Cheng
bc5e3524eb
Export basicPage
2013-05-23 11:56:55 -07:00
Joe Cheng
479297fc35
Add basicPage function; like bootstrapPage with padding
2013-05-23 11:23:28 -07:00
Joe Cheng
516feafcfb
Run apps without creating files on disk
...
With this commit, runApp can now accept a list instead of a path.
This list should have elements named "ui" and "server" that contain
what would normally go in shinyUI and shinyServer, respectively.
(Note that there is no equivalent to global.R, nor should there
need to be since you can just directly execute in the global env
before calling runApp.)
Example:
runApp(list(
ui = bootstrapPage(
numericInput('n', 'Number of obs', 100),
plotOutput('plot')
),
server = function(input, output) {
output$plot <- renderPlot({ hist(runif(input$n)) })
}
))
2013-05-23 10:00:38 -07:00
Joe Cheng
a135c82ab5
Merge pull request #160 from wch/reactive-timer
...
reactiveTimer: don't invalidate when session closed
2013-05-15 14:08:56 -07:00
Winston Chang
10996f1cbd
reactiveTimer: don't invalidate when session closed
2013-05-15 15:50:37 -05:00
Joe Cheng
23b060e1f5
Merge pull request #159 from wch/session-invalidate
...
invalidateLater: don't invalidate when session closed
2013-05-15 11:32:09 -07:00
Winston Chang
622ff3a256
invalidateLater: don't invalidate when session closed
2013-05-15 12:41:07 -05:00
Winston Chang
5d457b6834
Bump httpuv version dependency
2013-05-15 12:09:21 -05:00
Winston Chang
f10f76d127
Fixes for R CMD check
2013-05-13 10:54:54 -05:00
Winston Chang
58f3382daf
Update NEWS
2013-05-10 14:09:51 -05:00
Winston Chang
0e1139446e
Merge pull request #149 from jcheng5/observer-priorities
...
Add priority levels to observers
2013-05-10 12:03:28 -07:00
Winston Chang
f433216fae
Merge pull request #156 from jcheng5/fix-submit-button
...
Fix submit button interactions with tabs, plot sizes
2013-05-10 12:02:14 -07:00
Winston Chang
ed680baaac
selectInput: correctly handle choices with duplicate names. Fixes #157
2013-05-08 18:32:05 -05:00
Winston Chang
e0a9d908ed
Update NEWS
2013-05-06 11:14:42 -05:00
Winston Chang
bfa4a46bd5
Merge pull request #154 from wch/tag
...
Add withTags function
2013-05-06 08:46:09 -07:00
Winston Chang
03f3ff991e
Update NEWS
2013-05-06 10:45:41 -05:00
Winston Chang
619b4824f0
Add tests for withTags
2013-05-06 10:45:41 -05:00
Winston Chang
021af0186b
Add withTags function
2013-05-06 10:45:41 -05:00
Winston Chang
d3caad8b8d
Add comment in test
2013-05-01 01:17:07 -04:00
Winston Chang
ec6bec3326
Fix selected items in checkboxGroupInput
2013-05-01 01:12:03 -04:00