Questions tagged [v-data-table]
157 questions
-1
votes
2 answers
Create a line with total from each group of items in a list in vuejs
i want to create a line with total from each group of items in a list like this:
So i did this to group by Car:
if (val == 2) {
this.dadosResumo.sort((a, b) => (a.carro > b.carro ? 1 : -1))
and i'm using v-data-table to render the itens from…

Johny Freitas
- 1
- 1
-1
votes
1 answer
About vuetify v-data table pagination
Is it possible to modify v-data-table pagination?
In this v-data-table pagination section(next,previous button).Am trying to give functions to this next and previous pagination button.
But i don't know how to modify this pagination section in…

adarsh
- 1
- 3
-1
votes
1 answer
How to use v-data-table with v-if to render automatically?
I'm trying to use v-data-table with data filter but it's not allowing my attempt below,

outzo
- 1
- 3
-1
votes
2 answers
Vuetify DataTable sorting
i'm working with https://vuetifyjs.com/en/components/data-tables/ and i set prop
:options.sync="filter_values"
@update:options="updateFilterValues()"
the problem i have, is that i want to disable the sorting for some columns, so i set the headers…

Alex Garcia
- 1
- 2
-1
votes
1 answer
How to eliminate and understand this error warning from vuetify data table slot?
I have a Vuetify data table populated from a json data store lke below. But i keep getting this warning:
Error in render: "TypeError: Cannot read property 'usertype' of undefined"
The display and code works as expected but I dont like the error…

joomkit
- 149
- 1
- 8
-1
votes
1 answer
Add a `v-text-field header` to `v-data-table` header for column based search
Target:
I am planing to add custom search to my v-data-table which filters on a per column basis. For example if I have the table
ID | Name | Age
I'd like to add a v-text-field to the Nameand Age header to enable custom filtering on those two…

Squirrel in training
- 658
- 1
- 9
- 23
-1
votes
1 answer
common search for vuetify data tables which exists in v-tabs
The Search functionality would also search for a result in any tab data table(each tab contains vuetify data table), not just the tab you are on.