24 questions
0
votes
0
answers
23
views
Primevue's DataTable Toast component acting differently in Parallel Works than with just Node
I using Vue3/Nuxt3 and have imported Primevue's DataTable and DataTable - Vue Table Component and Toast component.
Works smashingly well on my development system using Node.
PrimeVue’s Toast is built ...
-1
votes
1
answer
238
views
Vuejs/Vuetify, data table server side on django rest framework, pagination isssue
i'm working a django api application that with such output :
{
"count": 8025,
"next": "http://localhost:8000/api/v1/businessunits/?page=2",
"previous&...
0
votes
1
answer
2k
views
Primevue datatable, how to hide a row which has no data in expanded row
I am using primevue datatable to show my data, and row expansion to show additional details.
https://primevue.org/datatable/#row_expansion
My problem is that some of the rows have no data in expanded ...
0
votes
1
answer
507
views
Vue Material Grid: How do I select the first occurring row by default when the page is loaded?
As I mentioned in the Q-title, I have built a datatable from Vue Material Table md-table using data that is fetched from backend and sorted by specific column.
Now in frontend I want the top(first) ...
0
votes
0
answers
151
views
How to sort column ASC using vue-data-table
I am using https://github.com/AndreSouzaAbreu/vue-data-table.
actually i want to sort marks column in ASC.
columns: [
{
key: "12",
index: 0,
...
0
votes
1
answer
227
views
Vue js not rendering VdtnetTable. What might be the issue
[Vue warn]: Error in render: "TypeError: Object(...) is not a function"
found in
---> <VdtnetTable>
<App> at resources/js/kodie/properties/Table.vue
<...
1
vote
1
answer
518
views
Hiding unfilled rows in vertical v-data-table with Vue
Following is executable code to demonstrate my problem.
Template:
<div id="app">
<v-app id="inspire">
<v-data-table
:headers="headers"
:...
0
votes
1
answer
259
views
Cannot sort date column in Vuesax data table
I need to apply a toggle sort on a datetime column in Vuesax data table I'm using. The toggle sort works on all other columns, except for the datetime column. My code is as follows (I've only written ...
1
vote
1
answer
438
views
fill datatable with vueJS
i´m trayin to fill my data table with vueJS and all my data from DB. I´m usign this library:
https://jamesdordoy.github.io/laravel-vue-datatable
It´s ok if i use this in my controller:
User::all()
...
0
votes
1
answer
221
views
How to get rid of the Brackets from fetched Nested Array
Good day to you guys.
May I seek your help.
I'm stuck figuring out on how to get rid of the Brackets and Separate each data from my nested array. Here's my code:
<template>
<v-data-table
...
2
votes
1
answer
2k
views
Slot filter with Vuejs and ElementUi
I have table where a column in there uses slot-scope and I can't get that column data into filters option.
Code
Component filter input
<el-input v-model="filters[0].value" placeholder=&...
0
votes
1
answer
1k
views
VueJs export table data
I am using vue-data-tables with element-ui and I am looking for solution to export data from my tables.
Logic
I need to export data that are placed in front-end table and not the data that are ...
0
votes
1
answer
372
views
vuejs Datable is not working with api's fetched data
I want to display the data in table using vue-datatable but it is not working.
Here is the code that i am using ,i am getting data in json format but it is not appending with datatable
can anyone help ...
3
votes
1
answer
6k
views
vuetify show-select in data-table not selecting items
So, I upgraded from vuetify 1.5 to latest (2.1xx) and get stuck on a few places.
I have a data-table where I want a "select all" checkbox in the header.
I added it with the "show-select" property and ...
5
votes
1
answer
6k
views
Vuetify v-data-table drag and drop
I am using V-data-table along with vuex store. Below are the points how I configured my v-data-table
Disabled sort on each column
bind the v-data-table items with vuex state store data
using ...
0
votes
1
answer
5k
views
is there any way that i can override the click event through Vue.js
I am currently using Vue-datatable, where I have a generic vue component as . I am using this base component to render data table and I have a @click event in the in the element. but as I use this ...
2
votes
1
answer
3k
views
Vuetify datatable watch does not trigger
The function "change sort" executed on header item click does not trigger watch, which fetches updated data from server. On the other hand, if I try to execute fetchRecords method at the end of ...
1
vote
1
answer
759
views
Search table content based on select item and search box
I am trying to create a select and search box for a data table in vue js. The items of select options are the column headers of the table.When we select one option(one column header), and search in ...
0
votes
1
answer
2k
views
Is there any way to modify vue-good-table pagination style?
vue-good-table allows pagination like following:
But I need pagination like below image:
Is there any way to have that pagination style using vue-good-table?
1
vote
0
answers
464
views
How to get data from class for Vuetify data-table component?
My data-table component:
<v-data-table
:headers="headers"
:items="datas"
hide-actions
class="tablazat">
<template
slot="items"
slot-scope="props"&...
5
votes
4
answers
16k
views
Vue + Vuetify data table first column image
I am using Vue + Vuetify and I am trying to add image in the first column.
Table Template Code
<v-data-table
:headers="headers"
:items="desserts"
:search="search"
light
>
<...
0
votes
0
answers
617
views
how to get 1 row value from (onclick) selected row datatables vue js 2
hello i didnt have any example to try this method..
can any one give me some little example for take 1 row value from datatable (onclick) selected row on vue js.
this is my template table
<...
0
votes
1
answer
3k
views
Use Object property as field value in VueJS data tables
In my project I am using VueJS (2.5.9) to render and edit data tables for an administrative application. For the data table, I was first using a simple Grid component, as per the example found here, ...
0
votes
1
answer
846
views
Vue: Adding a sub-component into component
All my pages are created under Page-Component.vue, and I am trying to use vue-data-tables
main.js
var Vue = require('vue')
import VueRouter from 'vue-router'
import Vuex from 'vuex'
import ...