Resources on custom output elements

Dear Community,

Can anyone please share resources on how to build custom Shiny output elements?

To give an example: I want to combine data table output with a download button and and apply certain styling. I am aware that this could be accomplished using a standard Shiny module. Anyhow, this is just the most trivial application my team has in mind.

I did not find the official tutorial too helpful, and Google does returns only a few, slightly off-topic results.

Thank you!

Best,

Dag

Hi,
I recommend to you the following articles on the shiny documentation.

  1. https://shiny.rstudio.com/articles/dynamic-ui.html
    This will help you place objects together in a shared context.. placed in you main application with uiOutput and server describe how to render it with renderUI

once you are comfortable with this, proceed to making a module for your specific need.
2. https://shiny.rstudio.com/articles/modules.html

Thank you for pointing these out! I seize the opportunity to sharpen my enquiry. Does anybody know an extended example on how to define and render custom output elements in Shiny?

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