shinyFeedback icon indicating copy to clipboard operation
shinyFeedback copied to clipboard

display user feedback next to Shiny inputs

Results 11 shinyFeedback issues
Sort by recently updated
recently updated
newest added

If we call `hideFeedback` or `showFeedback*` with `inputId` of nonexistent element, a JS error is throw like on the screen below. ![image](https://user-images.githubusercontent.com/4190478/166685020-06d088a1-3276-4d82-b655-d492ad7024d6.png) This is NOT causing any issues in Shiny...

Is it possible to provide an icon to appear on `loadingButton` as a label? I've tried this (`shinyFeedback 0.4.0`): ```r library(shiny) library(shinyFeedback) shinyApp( ui = basicPage( useShinyFeedback(), loadingButton( inputId =...

enhancement
andy_review

I've noticed that `resetLoadingButton` interferes with `shinyjs` functionalities in two ways: - button is hidden with `shinyjs::hide` -> `resetLoadingButton` shows it, - button is disabled with `shinyjs::disable` -> `resetLoadingButton` enables...

When using [`rstudio/bslib`](https://github.com/rstudio/bslib), `shinyFeedback` couldn't put its output correctly. demo: ```r if (interactive()) { library(shinyFeedback) library(bslib) options(device.ask.default = FALSE) ui

I work with many different form fields also like shinywidget and shinyfeedback is often in use. We use R/Shiny for an internal project of a big company and shinyfeedback is...

I bumped into this when investigating #69. When creating `loadingButton` with already existing `inputId`, it is correctly removed from `buttons` array, but it looks like `click` event handlers are accumulated....

When `loadingButton` is recreated with the same ID, corresponding `input` value is not reset until the button is clicked for the first time. This behaviour differs from the built-in `actionButton`,...

loadingButton input value is explicitly set to null at initialisation, in order to immediately reset input to initial state when recreating button with existing inputId.