You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to know if the table search functionality can be extracted. By adding a filter to a table renderDT(tbl, filter = "top") one can search each column. However, I would like to change where the filter boxes, namely to the left in their own pane, and use keep the underlying functionality, especially having the search boxes dynamically update based on the other inputs.
server<-function(input, output, session) {
output$table<- renderDT(tbl, filter="top")
filterable_sets<- eventReactive(input$table_search_columns, {
# Get separately filtered indicesfi<- Map(doColumnSearch, tbl, input$table_search_columns)
# Find what rows others leave availableai<- lapply(seq_along(fi), function(j) Reduce(intersect, fi[-j]))
# Get the corresponding data
lapply(Map(`[`, tbl, ai), function(x) {
if (is.factor(x)) droplevels(x) elsex
})
})
proxy<- dataTableProxy("table")
observeEvent(filterable_sets(), {
updateFilters(proxy, filterable_sets())
})
}
I have provided the necessary information about my issue.
If I'm asking a question, I have already asked it on Stack Overflow or RStudio Community, waited for at least 24 hours, and included a link to my question there.
If I'm filing a bug report, I have included a minimal, self-contained, and reproducible example, and have also included xfun::session_info('DT'). I have upgraded all my packages to their latest versions (e.g., R, RStudio, and R packages), and also tried the development version: remotes::install_github('rstudio/DT').
If I have posted the same issue elsewhere, I have also mentioned it in this issue.
I have learned the Github Markdown syntax, and formatted my issue correctly.
I understand that my issue may be closed if I don't fulfill my promises.
The text was updated successfully, but these errors were encountered:
I would like to know if the table search functionality can be extracted. By adding a filter to a table
renderDT(tbl, filter = "top")
one can search each column. However, I would like to change where the filter boxes, namely to the left in their own pane, and use keep the underlying functionality, especially having the search boxes dynamically update based on the other inputs.By filing an issue to this repo, I promise that
xfun::session_info('DT')
. I have upgraded all my packages to their latest versions (e.g., R, RStudio, and R packages), and also tried the development version:remotes::install_github('rstudio/DT')
.I understand that my issue may be closed if I don't fulfill my promises.
The text was updated successfully, but these errors were encountered: