ui
ui copied to clipboard
UTable - hide the "select all" checbox in header
Description
Hey,
Is there a way to hide the checkbox in the header when the v-model is set?
I'm not able to find the right template name (I tried named templates like #select-header).
I want to hide this checkbox:
Thank's in advance :)
This is unfortunately not possible at the moment.
@Suniron you can always use CSS, not optimal but can do the trick for you. Something like:
table thead input { display: none; }