nls1200
nls1200

Reputation: 75

how can i change the search button in Shiny?

I want to change this text to other text: I tried to search but I didn't find any solution enter image description here

Upvotes: 0

Views: 313

Answers (1)

Stéphane Laurent
Stéphane Laurent

Reputation: 84529

library(DT)

datatable(
  iris,
  options = list(
    language = list(
      search = "Seek"
    )
  )
)

Upvotes: 1

Related Questions