ui icon indicating copy to clipboard operation
ui copied to clipboard

UTable - hide the "select all" checbox in header

Open Suniron opened this issue 1 year ago • 2 comments

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: image

Thank's in advance :)

Suniron avatar Sep 20 '24 11:09 Suniron

This is unfortunately not possible at the moment.

benjamincanac avatar Sep 20 '24 12:09 benjamincanac

@Suniron you can always use CSS, not optimal but can do the trick for you. Something like:

table thead input { display: none; }

Tragio avatar Sep 21 '24 09:09 Tragio