Replacing out-of-date output with Update button

I'd like my plot output to invalidate with an Update button when other inputs are changed.

What's the best way to do this? Dynamic visibility with output validation?

More simply: When other inputs are changed, I'd like the plot to disappear, and for an "Update" button to appear in its place. Then when the user clicks Update, the Update button disappears and the plot re-renders and appears.

I'm not entirely sure what you are after. However, if you'd like to update your plot only after a button was pressed you can use e.g. renderPlot({myPlot}) |> bindEvent(input$myButton)

When other inputs are changed, I'd like the plot to disappear, and for an "Update" button to appear in its place. Then when the user clicks Update, the Update button disappears and the plot re-renders and appears.

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.