Spaces:
Running
Running
menu tweak
Browse files
app/app.R
CHANGED
@@ -1795,8 +1795,8 @@ server <- function(input, output) {
|
|
1795 |
dom = 'Bflrtip', # https://datatables.net/reference/option/dom
|
1796 |
buttons = list('csv', 'excel', 'copy', 'print'), # https://rstudio.github.io/DT/003-tabletools-buttons.html
|
1797 |
order = list(list(0, 'asc'), list(1, 'asc')),
|
1798 |
-
pageLength =
|
1799 |
-
lengthMenu = c(10, 50, 100, 500, 1000),
|
1800 |
columnDefs = list(list(className = 'dt-center', targets = "_all")))
|
1801 |
) |>
|
1802 |
|
|
|
1795 |
dom = 'Bflrtip', # https://datatables.net/reference/option/dom
|
1796 |
buttons = list('csv', 'excel', 'copy', 'print'), # https://rstudio.github.io/DT/003-tabletools-buttons.html
|
1797 |
order = list(list(0, 'asc'), list(1, 'asc')),
|
1798 |
+
pageLength = 1000,
|
1799 |
+
lengthMenu = c(10, 50, 100, 500, 1000, 10000),
|
1800 |
columnDefs = list(list(className = 'dt-center', targets = "_all")))
|
1801 |
) |>
|
1802 |
|