Skip to content

Commit

Permalink
sensitivity : add button to disable columns in the table
Browse files Browse the repository at this point in the history
  • Loading branch information
RCura committed Jan 10, 2020
1 parent b94a742 commit dd1ace2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src_plots/sensitivity.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ sensitivity <- reactiveValues(selected = NULL,

output$sensitivity_summary <- DT::renderDataTable({
summary_sensib
}, extensions = "FixedColumns",style = "bootstrap", class = "table-condensed", rownames = TRUE,
options = list(paging = FALSE, scrollX = TRUE, fixedColumns = TRUE))
}, extensions = list("FixedColumns" = NULL, "Buttons" = NULL),style = "bootstrap", class = "table-condensed", rownames = TRUE,
options = list(paging = FALSE, scrollX = TRUE, fixedColumns = TRUE, dom = 'Bfrtip', buttons = list(list(extend = 'colvis', columns = c(2:9)))))


observe({
Expand Down

0 comments on commit dd1ace2

Please sign in to comment.