replaceData | R Documentation |
Replace the data object of a table output and avoid regenerating the full table, in which case the state of the current table will be preserved (sorting, filtering, and pagination) and applied to the table with new data.
replaceData(proxy, data, ..., resetPaging = TRUE, clearSelection = "all")
updateFilters(proxy, data)
proxy |
a proxy object created by |
data |
the new data object to be loaded in the table |
... |
other arguments to be passed to |
resetPaging , clearSelection |
passed to |
When you replace the data in an existing table, please make sure the
new data has the same number of columns as the current data. When you have
enabled column filters, you should also make sure the attributes of every
column remain the same, e.g. factor columns should have the same or fewer
levels, and numeric columns should have the same or smaller range,
otherwise the filters may never be able to reach certain rows in the data,
unless you explicitly update the filters with updateFilters()
.
If the ColReorder
extension is used, the new data
must have
column names that match the original data column names exactly.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.