tabelle ohne paginierung, trans-aktionen korrigiert

This commit is contained in:
2026-03-18 16:27:33 +01:00
parent cb6be8ed88
commit 83b1616836
3 changed files with 30 additions and 10 deletions
+3 -2
View File
@@ -1,13 +1,14 @@
f_reactable <- function(daten, coldefs = NULL, selection = "single", defaultSelected = NULL) {
f_reactable <- function(daten, coldefs = NULL, selection = "single", defaultSelected = NULL, hoehe = NULL) {
reactable(
daten,
selection = selection,
defaultSelected = defaultSelected, # Ermöglicht das Wiederherstellen der Auswahl
pagination = TRUE,
pagination = F,
defaultPageSize = 17,
showPageSizeOptions = TRUE,
filterable = TRUE,
highlight = TRUE,
height = hoehe, # <--- FIXIERT DEN HEADER und macht den Body scrollbar
bordered = TRUE,
striped = FALSE,
compact = TRUE,