https://rstudio.github.io/DT/009-searchable.html
library(DT)
iris2 = iris[46:55, ]
datatable(
iris2, filter = 'top',
options = list(
# columnDefs = list(list(targets = c(1, 3), searchable = FALSE)),
pageLength = 5
)
)
https://rstudio.github.io/DT/009-searchable.html
library(DT)
iris2 = iris[46:55, ]
datatable(
iris2, filter = 'top',
options = list(
# columnDefs = list(list(targets = c(1, 3), searchable = FALSE)),
pageLength = 5
)
)