How to change the "show entries" menu text itself?

This is a minimal example taken from user Yihui Xie :

library(shiny)
library(DT)
shinyApp(
    ui = fluidPage(fluidRow(dataTableOutput('foo'))),
    server = function(input, output) {
        output$foo = renderDataTable({
            iris
        }, options = list(
            scrollY = '300px', paging = FALSE
        ))
    }
)

How can I change the text "show x entries" to erase the word "show" , such that the menu only displays the dropdown box beside "entires" ?

If the answer involved javascript / shinyjs would you still want it ?

Yes I'm willing to try. Thanks!

https://rstudio.github.io/DT/
section 2.9 talks about how to create javascript callbacks

other sources can suggest the sort of javascript that might work such as

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.