Hi,
The options argument should be a list, and I("plugins:
['remove_button']") is a character string. Please try the minimal
example below:
library(shiny)
runApp(list(
ui = fluidPage(
selectizeInput(
'foo', 'FOO', LETTERS, multiple = TRUE, options = list(plugins =
list('remove_button'))
)
),
server = function(input, output) {}
))
If you want more plugins, just add their names to the list(), e.g.
list('remove_button', 'restore_on_backspace')
Regards,
Yihui