Winston Chang

Results 285 comments of Winston Chang

Just a quick note: the Shiny team has been debating how best to expose these options. It's something that we don't have an answer for yet, but it is certainly...

Can you provide some information about the problem, and an example of this in action?

It looks like the jQuery `.append()` loads and evals code synchronously, while `.appendChild()` will do it asynchronously. This change would affect not just debugging, but possibly the behavior of applications....

Some issues that came up in a discussion of this PR: * Many widgets require the JS dependencies to be loaded synchronously, because the initialization for the widget happens right...

> i don’t understand: loading multiple scripts by attaching script nodes to the `` and setting their `.async = false` means they’ll load in sequence (i.e. `$el.ionRangeSlider(opts)` will work if...

@jcheng5 it's failing for me in RStudio and in Chrome (Mac), when I use your branch. According to [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#Async_support), `.async=false` only ensures that the scripts will be executed in the...

Hi, thanks for taking the time to put this together. We have been gradually collecting examples of useful higher-order reactives that could be useful enough for users to merit a...

What is the use case for this?

Right, I get what the effect is of changing `res` dynamically -- what I meant was, is there a practical use case you have in mind where you want to...

I agree that it is strange that the `renderPlot() |> bindEvent(input$trigger)` doesn't re-render on every click, but that other render functions, like `renderText()` do re-render, like in this example: ```R...