ismirsehregal

Results 75 comments of ismirsehregal

Hi, @cpsievert no the current examples won't fail with {fontawesome} 0.3.0. This is just to avoid warnings like: ``` This Font Awesome icon ('level-up-alt') does not exist: * if providing...

To freeze all inputs on session start you could place something like: `lapply(isolate(names(input)), freezeReactiveValue, x = input)` at the top of your server function.

I don't know your usecase but still I'd try to directly place the unknown inputs in the UI part. You could create a parent R process checking the source of...

@gsmolinski yes it seems to be the same (latest CRAN shiny). Your example works fine (resulting in a "l" modal when specifying "xl").

@wch thank you for your response! During my research I also came across the thread on the R-devel list. I absolutly agree with this statement from Duncan Murdoch: > The...

[Here](https://stackoverflow.com/questions/17107206/change-temporary-directory) are some options described to change the location of `tempdir()`.

![image](https://user-images.githubusercontent.com/36849480/159661525-9cc5cb47-b827-41f6-a541-ce1384b4acbd.png)

The same issue was described [here](https://stackoverflow.com/questions/69732166/how-can-i-prevent-r-shiny-file-browser-from-reseting-browser-to-top-of-the-page). Here is an example: ![Animation](https://user-images.githubusercontent.com/36849480/139018291-54f6da25-e1d0-4acb-a309-eb06f241705d.gif) ``` library(shiny) ui

Here is a workaround for this situation: ``` library(shiny) ui

A related [issue ](https://github.com/rstudio/shiny/issues/2797) and a [PR](https://github.com/rstudio/shiny/pull/2818) (dealing with a modal instead of renderUI).