Questions tagged [vue-tables-2]

Vue.js table component

Vue Tables 2 was created to give developers a fully featured tool-set for creating beautiful and useful data tables with Vue.js. Used in hundreds of commercial software applications, Vue Tables 2 is constantly growing, improving and getting new features

Official docs

136 questions
0
votes
0 answers

dynamically add new fields to b-table [ Vue.js ]

I am trying to create a table using bootstrap table with fields dynamically added. The fields that will be added will be taken from my api (see code below). vue.js (jade) - The 2nd template will be the one to render the dynamically added fields but…
obliviousfella
  • 425
  • 1
  • 8
  • 19
0
votes
1 answer

How to update data from vue-tables-2 after action from Template?

I'm using a custom component as a column on vue-tables-2, to do that I'm using a vue-component as described here: vue-components I've created a button that opens a modal to the user confirm some information, and after that I make a request to the…
thur
  • 964
  • 1
  • 15
  • 27
0
votes
1 answer

Vuetable-2 not working with Laravel Passport

I'm working with laravel as backend (API with Passport) and i have vuetable-2 to handle data in front end. Actualy I'm configuring vuetable-2 with my customers API. First i have configure vuetable with an externa API, then i have configure laravel…
Guido Caffa
  • 1,201
  • 1
  • 12
  • 22
0
votes
1 answer

v-model and passing a parameter to a rest patch api call

Very new to Vue2, so far so good but I hit a little snag and front end is not my forte. The table(vue-tables-2) displays correctly what's in the database. I am passing an id in a function to determine what particular row to update but I also want to…
Marquis
  • 185
  • 1
  • 1
  • 11
0
votes
1 answer

Method to get parameters send it in Ajax request

Is there method te get parameters send it with ajax method on vue-tables-2 component ? query: limit: 25 ascending: 1 page: 1 byColumn: 0
ZeroCool
  • 99
  • 9
0
votes
0 answers

How can I fix problem with embeded sorting in vue-tables-2?

I'm putting columns into sorting in first click it works and sorts But further there is this:Uncaught RangeError: Maximum call stack size exceeded How can I fix it? Thanks in advance Vue.use(VueTables.ClientTable); new Vue({ el:…
0
votes
1 answer

'Failed to mount component' error for 'vue-table-2' component in Vuejs

I'm new in here and also Vue.js. I want to try 'vue-table-2' like here; (https://jsfiddle.net/matfish2/jfa5t4sm/) but I couldn't run it correctly. "dependencies": { "bootstrap3": "^3.3.5", "moment": "^2.23.0", "vue": "^2.5.21", …
0
votes
1 answer

Add an external filter in vue-table-2

Anyone please help me with the code to add an external filter in vue-table-2. I tried using slots
0
votes
1 answer

vue-tables-2 filtering arguments passed from parent component

Is it possible to use the default filtering on client tables in vue-tables-2 externally? I have a parent component holding multiple vue tables and want to be able to pass a string from the parent component to all of the child components which each…
fred
  • 23
  • 4
0
votes
1 answer

Vue tables 2 change sort icons

I am using vue tables 2 and by default it uses glyphicons. I want to use material icons and I tried to change span to i and to add innerText by javascript but after compiling project it resets back to span with glypicon. I found this:…
Miko
  • 363
  • 1
  • 8
  • 22
0
votes
1 answer

2 Data-Tables toggling expandable rows between the 2 tables

Hey I need some help with using two data-tables on the same page. What I need to happen is when table 1 (T1) has a row (R1) expanded I need R1 to collapse when the user expands a row (R2) on table 2 (T2). Here is a codepen set up with 2 data-tables…
EchoNano
  • 303
  • 2
  • 13
0
votes
1 answer

Using prop in server table

Hi All I'm having an issue with vue tables 2. I pass my application a Vue component with the following:
iLC
  • 347
  • 9
  • 22
0
votes
1 answer

How to get the Row name and column number in the table in Vue?

Is there any way I can get the column number or position and the row header of the table using vue? Output now so far is like this. Code in generating the table:
user6632933
0
votes
1 answer

Vue-tables-2 - setting up initial filtering

I'm using vue-tables-2 for my Vue.js app and I'm wondering if there is a possibility to set up (programatically) default (initial) filters that are applied once table is rendered? I would like to avoid finding that DOM's element and firing click…
Kisiel
  • 21
  • 1
  • 7
0
votes
1 answer

Format Datetime from array using momentjs

I have vue tables 2 like this: import moment from 'moment'; import { Event }…
Pepe
  • 93
  • 1
  • 10