You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New Functionality
Allow to customize only some headers in a Data table.
I want to add some custom classes to the checkbox column, but not to my other columns. I know I can add some classes in the headers array, but there is no way to access the checkbox header other than using <template slot="headers" slot-scope="props">, but if I do that I have to manually iterate in my headers array instead of having the default behavior.
Improvements
The only workaround is to customize all headers using the "headers" slot, but that is not needed in my case and I guess I don't see why we cannot easily access the v-checkbox header.
Bugs or Edge Cases it Helps Avoid
More friendly use of the v-checkbox header.
The text was updated successfully, but these errors were encountered:
New Functionality
Allow to customize only some headers in a Data table.
I want to add some custom classes to the checkbox column, but not to my other columns. I know I can add some classes in the headers array, but there is no way to access the checkbox header other than using
<template slot="headers" slot-scope="props">
, but if I do that I have to manually iterate in my headers array instead of having the default behavior.Improvements
The only workaround is to customize all headers using the "headers" slot, but that is not needed in my case and I guess I don't see why we cannot easily access the v-checkbox header.
Bugs or Edge Cases it Helps Avoid
More friendly use of the v-checkbox header.
The text was updated successfully, but these errors were encountered: