20,461 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
58
views
Twemoji renders only emojis in the first page of a DataTables table
$(function() {
let mytable = new DataTable('#mytable');
document.body = twemoji.parse(document.body);
});
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.0/css/...
0
votes
0
answers
29
views
Unable to get columnControl working for datatable
I have my table set up and working correctly using the code below, but whenever I add
columnControl: ['order', ['searchList']]
I get the following error
Cannot read properties of null (reading '...
0
votes
1
answer
98
views
Datatables pagination not working - table never updates
I'm working on a project upgrading our website- jquery/datatables/codeigniter. In the previous version, I had no problem with this datatable. But now, for some reason the pagination isn't working. ...
1
vote
2
answers
93
views
How can I sync row order across multiple Data-tables without triggering infinite re-sorting?
I have four Data-tables tables on a page, each displaying different financial metrics about the same set of stocks. Each table shares a common Ticker column, and every table has the same number of ...
-1
votes
1
answer
64
views
DataTables how to update select filters based on other select filter but json as source
I have found some examples where the select filters are being updated based upon the selected option in other filters. e.g. https://datatables.net/forums/discussion/71930/update-select-filters-based-...
1
vote
1
answer
125
views
jQuery Events are not binding on buttons in a responsive datatable
I have a table
column 1
column 2
colum 3
[buttons]
data
data
data
[Button][Button][Button][Button]
I then convert the HTML Table to a responsive datatable, with the buttons bound using a jQuery ...
0
votes
0
answers
125
views
How to add a custom search/filter function for DataTables' searchList using Vue templates?
I am trying to create a Vue DataTable component so I can make several tables without having to worry about their overall set-up (since it will be done in this main table component).
One of the ...
0
votes
1
answer
61
views
How to submit selected rows from DataTables in a form
I am using DataTables multi item selection and like to submit the selected rows to my form.
Of course, I could manually create an input element for each row in my table:
<input type="hidden&...
1
vote
0
answers
48
views
How to setup .npmrc file in Next.js application that is dependent on an authtoken?
I have a Next.js application that is dependent on a npm package that uses an authentication token. I don't want to commit this token to source control.
I created a .env file in the root of my ...
0
votes
0
answers
118
views
Export data table to Excel starting data from fourth row
I have exported the data table data to Excel file. I have added features like borders and exporting all the data to Excel sheet.
Now, I need to export data to the Excel leaving first three rows empty ...
0
votes
2
answers
119
views
Bootstrap DataTables Arabic Search Not Working (English Search Works Fine) [closed]
I'm currently using Bootstrap DataTables on the front end with JavaScript and AJAX to fetch data from a Spring Boot backend.
The table loads correctly and searching in English works as expected. ...
0
votes
1
answer
83
views
DataTables / SearchBuilder: prevent replacing symbols: Ё > Е, Й > И
In DataTables SearchBuilder requests replaces some symbols like:
Ё > Е
Й > И
Is there a way to fix it?
For columns tried to set columns.type = 'string-utf8'
For columns tried to set columns....
1
vote
1
answer
52
views
jquery data table features not working with dynamic table
My datatable is working fine, all the features like pagination, sorting, searching are working with static table data content.
But when I fetch data from database and render in datatable features like ...
-1
votes
1
answer
48
views
Mask datatable column value but make it searchable
I am returning a users datatable in a laravel datatable like so:
<?php
namespace App\DataTables\Users;
use App\Models\User;
use App\Models\Accounting;
use Illuminate\Support\Carbon;
use Yajra\...
3
votes
1
answer
117
views
The fixedColumn feature not working in the datatable
I am trying to freeze the first four columns of this datatable when a user is scrolling it horizontally. But the style "dtfc-has-left" style="position: relative;"" is not ...