All Questions
Tagged with jquery-datatables or datatables
20,487 questions
1
vote
0
answers
99
views
cdn.datatables.net connection refused, datatable won't load [closed]
While navigating a page that include DataTable, I am getting the following errors on the browser's console:
GET https://cdn.datatables.net/1.10.22/css/jquery.dataTables.min.css
net::...
0
votes
1
answer
108
views
jQuery DataTable not calling ajax [closed]
Have a web application I am building using Visual Studio 2022, .Net (not Core) that has a page that uses ajax to gather data for a DataTables table. Problem I am having is that the ajax endpoint ...
0
votes
0
answers
68
views
How do I handle query string with ajax to pass a Google Sheets ID parameter to my app script so it can show that Google Sheet's data on my website? [closed]
I’ve been working on a website built to show a table of sports teams and their stats. In order to do so I am utilizing datatables, ajax, google sheets, and google app script. I’m also using Hostinger ...
-1
votes
0
answers
59
views
Datatable ajax reload with new data [duplicate]
So I already have my main table set up upon initial load in a javascript file as such:
let table = new DataTable('#UsersTable', {
ajax: 'user_data',
rowId: 'id',
columns: [
{ data: ...
0
votes
1
answer
45
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
41
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
42
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
86
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 ...
0
votes
2
answers
82
views
Display image from Laravel application public folder path to jQuery data table
I am trying to render image from public folder to the DataTable, where the image information like path are stored in database. When I hard code the image information, the image is rendered. But when I ...
0
votes
1
answer
51
views
getting raw data in view page when using DataTable in laravel
I am getting raw data in my view page when using DataTable in my laravel app. I have installed the package: composer require yajra/laravel-datatables-oracle
//PostController class
namespace App\Http\...
1
vote
1
answer
58
views
Integration between DataTables and ASP.NET Core MVC: form doesn't read all values
In my ASP.NET Core MVC project, I have a page where I use DataTables. I added the code to render the table names logs with DataTables.
$(document).ready(function() {
var logs = $('#logs')....
0
votes
1
answer
49
views
Sort datatable column so blanks appear last
I'm trying to sort my date column ArrivalDate so that any blanks/null values appear last or at the bottom of the list when sorting by that column. I have found the 'absolute' plugin but I don't ...
0
votes
1
answer
49
views
JQuery Datatable returning null when using Search
I posted the same question on the Datatables forum but they could not help me: https://datatables.net/forums/discussion/80946/searchpanes-not-working-correctly-with-razor-mvc#latest
I investigated a ...
0
votes
1
answer
40
views
React Datatable unable to intialised DataTable for the second time
I am having problems with reinitializing my datatable in react. Below is an example that I have compiled for everyone to replicate the problem immediately. Currently, I am trying to let user to select ...
1
vote
2
answers
106
views
Updating table names dynamically in formulas in VBA
Update: Thank you all - Having the spaces before and after the ampersands in the CountA solved the problem in one location, and being able to use the Row(Table) function suggested in the comments ...