how to make sticky header with sticky column
reactable(
MASS::Cars93[1:20, ],
pagination = FALSE,
height = 400,
wrap = FALSE,
columns = list(
Manufacturer = colDef(
class = "sticky left-col-1",
headerClass = "sticky left-col-1",
footerClass = "sticky left-col-1"
),
Model = colDef(
class = "sticky left-col-2",
headerClass = "sticky left-col-2",
footerClass = "sticky left-col-2"
),
Type = colDef(
class = "sticky left-col-3",
headerClass = "sticky left-col-3",
footerClass = "sticky left-col-3"
),
Make = colDef(
class = "sticky right-col-1",
headerClass = "sticky right-col-1",
footerClass = "sticky right-col-1"
)
),
defaultColDef = colDef(footer = "Footer")
)