To clearly separate columns with a line between them
Instead of adding custom CSS for the table, adding a HTML attribute such as "grid-lines" , should paint the dividers between columns
Any bugs coming from building custom CSS on the standard vuetify framework, that may stop working without one mentioning it by a Vuetify update.
Not sure this is material spec, but also I do not see why this cannot be implemented
I don't now if they are in the spec but at least one can observe them in the example pictures of the material design docs.
https://material.io/design/components/data-tables.html#behavior
In the meantime, if anyone needs to add it, you can just use the following.
<style>
table th + th { border-left:1px solid #dddddd; }
table td + td { border-left:1px solid #dddddd; }
</style>
_Note: Solution adapted from Erasmus https://stackoverflow.com/questions/3313456/css-borders-between-table-columns-only/3313493_
Available in the 2.0 alpha.
Available in the 2.0 alpha.
@blalan05 Where can I find example of style setting to get divider?
Available in the 2.0 alpha.
@blalan05 I can't find anything in the documentation or release notes about being able to use column separators in a table, was this actually implemented?
EDIT: Found the answer. Individual column dividers can be added using the divider: true
option in a column header definition.
I also need this feature
Most helpful comment
@blalan05 Where can I find example of style setting to get divider?