Example Code
library(shiny)
tbl = data.frame(
COL_WITH_EQ_SIGN = c("<", "<=", "=", "abc=", "abc", "efg", "efg=")
)
ui = fluidPage(
DT::DTOutput("tbl")
)
server = function(input, output, session) {
output$tbl = DT::renderDT({
DT::datatable(
tbl, options = list(search = list(regrex = FALSE))
)
})
}
runApp(list(ui=ui, server=server))
Reproducible Steps
- Launch the app
- Type
abc= in the top-right box to search
You will find the equal sign = doesn't work, but it should.
Screenshot
