Buchungen funktioniern mitsamt modal und laufendem saldo

This commit is contained in:
2026-03-09 15:41:08 +01:00
parent da524d4af5
commit 5cb4eb96e8
9 changed files with 182 additions and 163 deletions
+20
View File
@@ -0,0 +1,20 @@
f_reactable <- function(daten, coldefs = NULL){
reactable(daten,
selection = "single",
bordered = TRUE,
defaultPageSize = 17,
filterable = TRUE,
highlight = TRUE,
striped = F,
theme = reactableTheme(
highlightColor = "#00f200",
borderColor = "#dfe2e5",
rowSelectedStyle = list(backgroundColor = "#98F5FF"),
),
compact = TRUE,
rowStyle = list(cursor = "pointer"),
onClick = "select",
columns = coldefs
)
}