Pedro Kaj Kjellerup Nacht
Pedro Kaj Kjellerup Nacht
Closes #264. Documentation currently doesn't make it clear that named arguments passed to `glue_data` take precedence over values that may be found in `.x`. This PR briefly mentions this behavior...
`glue_data()` currently gives priority to named arguments over elements of `.x`. ``` glue::glue_data("SELECT {x}", .x = list(x = 1), x = 2) #> "SELECT 2" ``` This seems perfectly reasonable:...
Closes #261. `glue_sql()` inherits the `.na` documentation from `glue()`. However, this argument's default value is different between the functions. Since the arguments are all documented with a `[type : default-value]`...
I was looking at glue's documentation to copy its `[type : default-value]` argument definitions and accidentally noticed a tiny error caused by it. It's a minuscule nitpick in the documentation...
`glue_sql`'s asterisk notation is very useful for concatenating a vector into a comma-separated list. However, it doesn't seem to work when the vector contains DBI::SQL elements. See the MWE below*:...
The following code gives the expected output: ```r library(shiny) library(rhandsontable) ui
The default heatmap renderer is ```js function (instance, td, row, col, prop, value, cellProperties) { Handsontable.renderers.TextRenderer.apply(this, arguments); heatmapScale = chroma.scale(['#ED6D47', '#17F556']); if (instance.heatmap[col]) { mn = instance.heatmap[col].min; mx = instance.heatmap[col].max;...
I have this simple MWE, with a table hidden by a bsCollapsePanel: ```r library(shiny) library(shinyBS) library(rhandsontable) ui
See the reprex below. `dbQuoteIdentifier()` is called twice with the same table data. All that changes is the order in which the `Id()` arguments were given. Conceptually, this should be...
As discussed in #613, `update_packages` must be in standalone mode to update its own dependencies such as `curl`, etc. However, this implies that if one wants to update packages, one...