All Questions
9 questions
0
votes
2
answers
147
views
DataTable not updating after adding new row in JavaScript application
I'm working on a JavaScript web application that uses DataTables to display a list of instructors. I'm having an issue where the DataTable doesn't update immediately after adding a new instructor to ...
0
votes
0
answers
265
views
Jquery click event triggered twice in Vuejs
I have a button in ajax mode datatable. A click event is attached with
the button which further sends ajax to change the record. After that i have reloaded the table using
this.table.ajax....
0
votes
1
answer
1k
views
jQuery DataTables child rows with Vue syntax
I have Vue JS component with a jQuery DataTables table in it. I want to add multiple child rows to each main row. This can be done like this:
this.table = $('#dataTable').DataTable({stateSave: true});...
1
vote
3
answers
7k
views
"No data available in table" VueJS
I am building a real time web application. The server runs on Node.js and the client is written in VueJS. I have written an API to fetch player information. When I hit the REST end point, data gets ...
1
vote
1
answer
481
views
Vue breaks DataTables and Pace JS
Running Vue 2.5.16 with jQuery DataTables 1.10.15 and Pace JS 1.0.2.
When I add the <div id="app"></div> wrapper to my root page layout, Vue components work but DataTables won't actually ...
1
vote
2
answers
2k
views
VueJS Jquery Datatable Integration: Attach method to dynamic html element
I integrated Jquery Datatables with VueJS Here is my Code
I want to attach a method of my Vue compoenent to the button My Button:
row.push('<button @click="vm.buttonPressed()">My Button</...
2
votes
1
answer
253
views
Cloned router-link should load on child router-view but it also reloads main reouter-view
I have a problem regarding VueJS with vue-router and datatables.net.
What I want to achieve is to get edit buttons in my datatable for each entery. To do this I first create an object in template for ...
3
votes
1
answer
4k
views
Dynamically compiling and mounting elements with VueJS
The Issue
I've created a light-weight wrapper around jQuery DataTables for VueJS like so:
<template>
<table ref="table" class="display table table-striped" cellspacing="0" width="100%"&...
0
votes
1
answer
314
views
In laravel SPA, I use the DataTables , when I use laravel's vue component,vue also require jquery, so the DataTables can't be load correctly
In laravel SPA, When I use the DataTables which depends on jQuery, when I use laravel's vue component,vue also require jquery, so the DataTables can't be load correctly, because loading jquery twice....