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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Is there a simple way to hide the "selectable checkbox" for specific nodes in the vuetify treeview ?
For example I am using the following config:
<v-treeview v-model="selectedDashboards" :items="dashboardsList" :search="searchDashboardsText" shaped hoverable activatable selectable dense item-disabled="selected" open-on-click selected-color="#00B8F1" selection-type="independent" open-all > <template v-slot:prepend="{ item, open }"> <v-icon v-if="item.folder"> {{ open ? 'icon-folder-open' : 'icon-folder-close' }} </v-icon> </template> </v-treeview>
And I want that for the folders the select checkbox wont be visible, and the user could only select the leaf nodes. Is that possible ?
Beta Was this translation helpful? Give feedback.
All reactions