shinycssloaders
shinycssloaders copied to clipboard
⌛ Add loading animations to a Shiny output while it's recalculating
Adds `caption` and `caption.color` arguments to `withSpinner`. Captions are implemented as an additional [div](https://github.com/daattali/shinycssloaders/issues/28#issuecomment-846040037) below the one containing the spinner. Not supported for spinner type 1 because the animation for...
When there is an output with spinner and somewhere in its reactive dependencies the processing is stopped by `req(..., cancelOutput = TRUE)`, spinner will never disappear. In the following app...
Adding new features: set spinner to keep currrent output height, and have some delay before showing spinner (and if a hide comes before delay, it doesnt show at all). These...
Adding configurable delay (_show.delay_ property) before showing spinner (and if a _hide_ comes before delay, it doesn't show at all). Default values should behave almost* the same as before: with...
Hello, I am seeing some page movement when the spinner is hidden and the page is scrolled to a certain location as seen below:  I think this is...
merge rmarkdown branch with master to allow further development of the package to support rmarkdown documents with shiny runtime
Adds support for custom loaders via the addition of `custom.class` for specifying a CSS class name to add to the spinner, and `custom.html`, which allows users to specify custom HTML...
Today I ran into the following issue with `withSpinner()`. I have modal with tabs in it. When a tab is selected the content must be refreshed, which is a slow...
Hello, On the code below, when I append the tab (in clicking on the checkbox), remove it (in clicking on the same checkbox) and append either the same tab or...
Hi, Is it possible to manually start or stop the loader for an output element using shinycssloaders ? I tried doing this by assigning the corresponding output element with NULL....