Carl Ganz

Results 30 comments of Carl Ganz

This is neat. Just a thought from my experience having difficulty including Shiny inputs inside datatables, do you have to bind/unbind the HTMLwidgets manually a la [this](https://groups.google.com/forum/#!msg/shiny-discuss/ZUMBGGl1sss/7sdRQecLBAAJ) each time you...

You can define custom sort functions to handle units. See: https://datatables.net/release-datatables/examples/plug-ins/sorting_sType.html

Can you please provide a full reproducible example? In general, all elements of the intro need to be in the DOM when the intro starts. I can't remember off the...

Yeah dynamic content and `intro.js` are hard to work with. I honestly wasn't aware of the refresh function in `intro.js` If you can find a way to use the refresh...

Hi Matt, Thanks for the bug report. I will investigate this issue. Regards, Carl

As per @wch, "DOM element with the specified ID isn't necessarily the thing that's displayed", so that means you will need to use a different CSS selector for `sliderInput` and...

When you get a chance please leave an example here, and I will investigate.

I will investigate the bullets issue. What happens to the elements in the `conditionalPanel` if you tell it not to suspend when hidden? ```{r} outputOptions(output, "myObject", suspendWhenHidden = FALSE) ```...

Ooohhhh I see. `outputOptions` won't work since we are dealing with an input and not an output, but it is essentially the same problem I suspect. I will investigate. Thanks...

Hey Matt, The issue with the `showBullets` option not being respected should be fixed now. `jsonlite` was building the options JSON object as `{"showBullets":[false]}`, but it needs to be `{"showBullets":false}`....