Download non-hidden column in datatable in R shiny

In my datatable, I have hidden few column by using below code

columnDefs = list(list(
        visible = FALSE, targets = c(2, 3, 4, 6, 7, 8)

But when I download the dataset in excel, even hidden columns are exported. Is there a way to download only non-hidden columns

1 Like

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.