I want to create a dropdown menu with the crosstalk package. My data has about 2000 choices. But with the filter_select() function only 1000 choices are possible. Can this limit be increased to 2000?
library(crosstalk)
df <- data.frame(g = seq(1, 2000))
df_shared <- SharedData$new(df)
crosstalk::filter_select(id = "test", label = "test", sharedData = df_shared, group = ~g, multiple = F)