Normalmente, Shiny DT tendrá botones visibles para ver la próxima X cantidad de registros. Al especificar style="bootstrap" , esos botones se convierten en el texto "anterior12345...8Siguiente", aunque siguen siendo enlaces en los que se puede hacer clic. ¿Qué puedo hacer para renderizar los botones correctamente?
if (interactive()) { library(shiny) library(DT) library(bs4Dash) # width dataframe as input shinyApp( ui = dashboardPage( header = dashboardHeader(), sidebar = dashboardSidebar(), body = dashboardBody( fluidRow(column(12, DT::dataTableOutput('mytable'))) ), footer = dashboardFooter() ), server = function(input, output) { output$mytable <- DT::renderDataTable(iris, #extensions = "FixedHeader", style="bootstrap", options = list( dom = 'Bfrtip', lengthMenu = c(50, 100), pageLength = 20, scrollX=TRUE, autoWidth = TRUE, paging=TRUE, searching=FALSE, ordering=TRUE #fixedHeader = TRUE, )) } ) }especificar style="bootstrap4" en lugar de style="bootstrap" en DT::renderDataTable() resuelve este problema