Dean Attali
Dean Attali
I could not find any documentation or examples or discussions online about this. Is there a way to add a JavaScript click handler for clicking on a column header, that...
See the example below: ``` df
Prior to f50d8c89e2789ef69384791663c880c470881247 the following code was fine: ``` shinydashboardPlus::accordion(div(id = "placeholder")) ``` (The usecase is that the accordion items were being added dynamically so it starts out empty with...
Because of the way IDs are being assigned to individual tabs (removing punctuation and whitespace from the `tabName` argument) , it's possible for different tabs to result in the same...
There are places in the code where inline styles are used, for example tabs have an inline background colour https://github.com/RinteRface/shinyMobile/blob/93eaffee6a8941376802ae867add36407531e19d/R/f7-tabs.R#L362 This means that it's difficult to override this style and...
This is a fatal bug but it seems to occur only in the following sequence: 1. heatmap is displayed **before** any plotly plots have rendered 2. a plotly plot is...
Any shiny output should be able to "cancel" the output if a `shiny::req()` fails. It seems that `renderIheatmap()` results in an error when a `req()` fails: ``` error in evaluating...
Generally, any output in shiny knows how to adjust its width based on its container. When the width of the browser window changes, outputs expand/shrink automatically to fit in the...
Related to #46 In the following example, a modal is opened, closed, and another modal with a shiny input immediately opens. The input doesn't get bound to shiny (same thing...
I learned yesterday that periods should not be allowed in IDs in Dash. I just tried the following app, and I didn't receive any errors. The app did not work,...