Hi All,
Is it possible to make a Data table that enables users to search for values with macrons without using macrons?
I am wanting to use this for a shiny app that has values with macrons in it.
library(dplyr)
library(DT)
df <- iris %>%
add_row(Species = "Kānuka")
datatable(df)
This does not work. I would like it to..
Any help much appreciated!
David