Questions tagged as 'datatables'

1
answer

Error in dataTables in Server side mode in Angular

Following this guide . categoria.component.html <table datatable [dtOptions]="dtOptions" class="row-border hover"> <thead> <tr> <th>ID</th> <th>First name</th>...
asked by 18.09.2018 / 17:27
1
answer

how to do for JSON only replace data in a column with PHP?

good day The problem that I have is that in my datatable I want it to show certain data with a style TO A COLUMN IN SPECIFIC, for example with $ for prices, or the dates with its format, etc. only that when doing this code, it only replaces what...
asked by 16.08.2018 / 20:05
1
answer

Restart or uncheck all the selected options in datatable plugin "checkboxes"

I am using an extension for the jQuery DataTables library that serves to select multiple rows of the datatable and make operations with them. The extension is    jQuery DataTables Checkboxes link But I have a problem. I need that aft...
asked by 18.05.2018 / 07:11
1
answer

Datatables jquery showing me hidden fields

I have a table on a page where I use the datatables.jquery plugin, which for me is very practical and functional. It turns out that in the table I use two hidden fields, the id and the nrologins (the latter I use to sort the data that comes wit...
asked by 05.10.2017 / 14:51
1
answer

Datatables with Bootstrap 4

I am working on a project that shows a catalog of production cells because there are too many data that I throw when making the Query, I wanted to try to use the Plugque of Jquery, Datatables, try to do it first in the following way: <...
asked by 27.10.2017 / 18:14
1
answer

JSON datatable php

I'm having trouble with my json, I'm not finding him around. My code is this: $salida = '{"data": ['; $paso = false; $i=0; foreach ($cirugias as $cirugia) { if ($paso){ $salida .= ','; } $salida .= '['; $salida .= '"'.strtoupper(nor...
asked by 22.05.2017 / 21:54
3
answers

How to go through all the Rows of a DataTable when it is filtered?

I try to go through all the rows that contain the " highlightchecked " class of a jquery DataTable using this code: $(dtTable12.rows().nodes()).each(function () { if ($(this).closest('tbody tr').hasClass('highlightchecked')) {...
asked by 01.12.2016 / 03:59
2
answers

How to see the data of a hidden column of Datatables

How to see the data of a column that is hidden, but I need to display the content in a texbox that is next to the datatable . Next I have the datatable configured to hide the column. $(document).ready(function() { $('#examp...
asked by 28.09.2016 / 23:40
1
answer

Replace characters [duplicate]

This post may seem duplicated, but I have tried several ways and the problem is not solved. I have a DataTable in which I dynamically load HTML tags. These labels, instead of being like this: <img src="ruta" /> they look like...
asked by 26.07.2018 / 12:26
1
answer

Because it does not rescue me the values of the datatable

I want to get the Codigo of a row in a table. And this value can be displayed in a Modal My Controller $data['personals'] = $this->m->getAllPersonal(); $this->load->view('list-personal',$data); my table &l...
asked by 05.07.2018 / 17:21