I want to disable a column filter for the second column of my datatable.
I have attempted to disable it via many different versions of this: "columnDefs = list(list(targets = c(1),searchable = FALSE)),"
However, it never changes any of the column filters. I can, and have, disabled the global filter but cannot disable the second column filter. I want to keep the other column filters on top.
I have also tried disabling scroller with no avail.
I would also like to change "All" in the other column filters to some different text, but that is a smaller issue.

Any help is appreciated.
Below is the code for my datatable using DT-1.0 on Shiny Server Pro.
datatable(finalDataset, #create dataTable using the finalDataset
extensions = 'Scroller', #use the scroller extension for better table viewing
filter = 'top', #add filters at the bottom of the page
rownames = FALSE,
selection="none", #turn off row selection
options = list(order = list(list(1, 'desc')), #order entries by newest to oldest date
searching = FALSE,
language = list(search = 'Keyword Search:'), #change title of search bar to "Keyword Search"
searchDelay = 1000, #add delay to limit calls on large datasets
deferRender = TRUE, #increase performance by only rendering what is on screen
scrollY = 300, #the height of the scroll table enabled by the Scroller extension
scrollCollapse = TRUE, #allows the scroll window to shrink to dataset size if smaller than scrollY
columnDefs = list(list(targets = c(1),searchable = FALSE)),
autowidth = TRUE, #autowidth the other columns
searchHighlight=TRUE, #highlight the keywords in the searches. futher customization in css files
lengthMenu = c(5,15,25,100), #options of how many results are initially returned
pageLength = 15, #default length of the above options
server = TRUE #enable server side processing for better performance
))
Thanks,
Logan