Questions tagged as 'jquery-datatables'

1
answer

Error returning JsonResult

I'm having trouble understanding this: When I click on the Datatable line to edit the Client data, an error occurs whenever the Client has a Contact or a Registered Address and this is very common. This is code that is triggered whe...
asked by 23.09.2015 / 14:39
2
answers

manipulating DataTables.net data with Json [how to manipulate json to display img in column]

I'm putting together a table with the JS framework DataTables I process the data via Server-side through JSON In the first column I would like to display a photo, the name of this photo comes via JSON. How to do it? Example of...
asked by 19.10.2015 / 20:29
2
answers

How to put the DataTable function for all tables at once

I'd like to know if I can use the function: $('#myTable').DataTable ({ scrolly: 300, paginação: false }); For all tables in my page (at once) or if I need to set up a function for each table in my row.     
asked by 17.11.2015 / 13:00
1
answer

Fill table with DB data

I'm having a problem adding the designation of an article through the code. I have the following: HTML <table class="table table-striped table-bordered" id="vendaTabela" width="100%" > <thead> <tr> <th dat...
asked by 26.02.2015 / 17:58
1
answer

Retrieve DOM element from a column

I have a Jquery event that captures information from a table row (I am using Jquery DataTables). var linha = $(this).parents('tr')[0].innerHTML; The value returned is this: <td class="text-center sorting_1">118587</td>...
asked by 24.07.2018 / 15:06
1
answer

Paging datatable with jQuery

I'm using DataTable to render my records. The problem is: I have 15,000 records in a table, it needs to load ALL records first, then mount the pager. How can I handle this? Do you first fetch the limit (20), and later, when you click on the p...
asked by 12.09.2017 / 17:56
1
answer

Load a table dynamically with ajax

I am trying to mount a table by making a request to the server and populating it with the return. The return of the server is correct, but when it enters the function(data) , I noticed that it loads all my html page, I already tr...
asked by 03.05.2017 / 17:57
1
answer

Share information between php pages

I'm developing a WEB content and I came across a catch. I have an Item Listing page (Using JqDataTable). Itturnsoutthatinthislistingtherearetwolinks,oneforeditingtheitemreferringtotheline,andanotherforthedeletion.Byclickingonthechangeordelet...
asked by 17.08.2016 / 21:06
1
answer

Data tables with bootstrap

Someone has some simple tutorial to apply the data table in the bootstrap, tried the forms that have on the site but could not, with skell css worked perfectly but with bootstrap does not appear. <link rel="stylesheet" type="text/css" href=...
asked by 15.03.2016 / 14:22
2
answers

Get the client ID of a selected row from the DataTable

How do I get the client ID of a DataTable and this column is hidden? When I click on the DataTable line I will need this ID to display in another View with Customer details. I have the following code @model IEnumerable<Do...
asked by 16.09.2015 / 14:35