No 'Show entries' dropdown when working with DT library
Closed this issue · 3 comments
lisovyk commented
Sample:
library(shinymaterial)
library(DT)
ui <- material_page(
DT::dataTableOutput("iris")
)
server <- function(input, output) {
DTiris <- DT::renderDataTable({
datatable(iris)
})
output$iris <- DTiris
}
shinyApp(ui = ui, server = server)
In the top left corner of the page you'll see "Show entries" sign, and there should be a dropdown nearby. Try changing material_page
onto fluidPage
to see what I'm talking about.
lisovyk commented
Tried on dev version, bug is still there
ericrayanderson commented
Try the most recent dev version.
lisovyk commented
It seems a bit clumsy, but it works. Thanks!