I have been having trouble with datatable searches triggering while a user is typing in a search term, even when delaySearch is working. The search triggers for the first character which is typed in, which can be very slow if there are large numbers of records. I found this solution for datatables, but I'm not sure how to implement it for R Shiny.
dt_options <- list(autowidth = TRUE,
searchDelay = 1000 )
datatable(initial_list_df,
filter = list(position = "top",
clear = TRUE,
plain = FALSE ),
options = dt_options )
Any ideas?