Sticky Action Column

Is there any solution about this I need to do something like this pic because I have to much columns and I need to be shown always the actions
Screenshot_2024-09-25_095805.png
Solution
.fi-ta-header-cell:last-of-type {
    @apply relative right-0 top-0 bottom-0 bg-red-500;
}

.fi-ta-header-cell:last-of-type {
    position: sticky;
}
Screenshot_from_2024-09-25_16-42-56.png
Was this page helpful?