-
PackageTable builder Package Versionv3.2.128 How can we help you?Hi there, I'm using verticallyAlignStart() on a few tables in my filamentphp app. But up to now, I wasn't able to figure out how to also set verticallyAlignStart() on the bulk checkbox in front of the row? These still appear as centered which looks a little bit odd compared to the rest of the row. Is there any option to also apply verticallyAlignStart() to the bulk checkbox in front of the row? Thanks and best regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok, managed it by myself modifying the css code: just added
first one moves the selection checkbox vertically to the top with some padding to display nicely and second one is for the cells (in that case i don't need to specify So if someone needs it as well, this is the working solution... |
Beta Was this translation helpful? Give feedback.
Ok, managed it by myself modifying the css code:
just added
->recordClasses(['vertical-align-selection-cell', 'vertical-align-cell'])
to my$table
and the corresponding css part looks like this:first one moves the selection checkbox vertically to the top with some padding to display nicely and second one is for the cells (in that case i don't need to specify
->verticallyAlignStart()
to all my cells as i need it on all cells in this table anyway.So if someone needs it as well, this is the wor…