Disable busy indicators on specific outputs?

,

I've been testing out the new busy indicators in shiny and was wondering if it is currently possible to disable the spinners on specific outputs?

For example, I do not want the spinners to show on any textOutput, or anything inside a bslib::value_box.

Thanks

1 Like

Yes, you can disable spinners for specific outputs using shinybusy::remove_modal_spinner() or by wrapping those outputs with suppressDependencies("shinybusy"). Another approach is to use custom CSS to hide spinners for specific elements. If you're using shinycssloaders::withSpinner(), simply avoid wrapping the outputs where you don’t want spinners.

Hi, sorry I should've specified I'm talking about the new native shiny busy indicators that are enabled on all outputs with shiny::useBusyIndicators()

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.