Murat Tasan
Murat Tasan
I'm wondering if there's a simple way to specify the script file holding {shinyjs} 'extension' functions as an {htmltools} `htmlDependency` object, using then the absolute file resolution codepath of that...
Hi, I'm curious about why [this `stopPropagation`](https://github.com/rstudio/DT/blob/c79c1b328c5d48d0b37024ba1704fc54c94d9ae6/inst/htmlwidgets/datatables.js#L1292) is in place for clicked anchors within a DT cell. I stumbled upon this because I'd registered an anchor-click handler on my DT...
(Apologies if this has already been asked (I searched through SO and GitHub Issues, but couldn't find anything with this specific question/request)) Is there any mechanism for server-side-processed tables to...
Hi, I love the shinyMobile package and am eager to migrate a few apps I've written to mobile-friendly versions. The problem is that I'm also quite happy with the current...
When using jqr on largish inputs, I'm finding frequent `protection stack overflow` errors. Here's a simple reprex with 100,000 input strings (on my machine): ```R > foo % jqr::jq("{a,b,c}") ```...
Using purrr v0.3.4, when I transpose a data.frame with a datetime column, that column is de-classed: ```R > x x # A tibble: 1 x 1 # now # #...
`map` (and plenty of other related functions, as described in #480) converts **typed** zero-length vectors to `NULL`: ```r map(list(a = integer(0)), "a") # NULL ``` I realize this is actually...
This is tangentially-related to #480, but is manifested in a slightly different way, so I figured to open a new issue. Currently both of these throw errors: ```r pluck(x, NULL)...
I think I'd expect `x` and `y` to be the same after this: ```R x Consider 'structure(list(), *)' instead. x #> $foo #> list() y $foo #> character(0) identical(x,y) #>...
Not sure what can be done about this, but if an SQL expression with parameters expects a float and `Inf` (or `-Inf`) is passed, PostgreSQL errs and complains like so:...