Questions tagged [dynatable]

HTML5+JSON interactive table plugin.

Dynatable is a funner, semantic, interactive table plugin using jQuery, HTML5, and JSON. And it's not just for tables.

87 questions
10
votes
1 answer

Updating table with Dynatable plugin

Im trying dynatable and Im running into an issue. I not sure how to update records from different json files. My html body:
LouieV
  • 1,032
  • 2
  • 15
  • 28
9
votes
1 answer

Load remote JSON from Dynatable

Update: to avoid the possibility that the problem comes solely down to the same origin policy, I've tried serving this locally where all assets are coming from http://localhost:4000 using Serve. It didn't solve the problem. So editing the fiddle…
iconoclast
  • 21,213
  • 15
  • 102
  • 138
4
votes
1 answer

Get Dynatables to modify thead headers after a JSON call

I have an ajax backed dynatable. At the moment, it works perfectly for tables with known headers prior. Example: var tableHeaders = ''; // Generate table headers from some list $scope.Model.computed.selection_list.map( function(selection){ …
Lmwangi
  • 2,486
  • 1
  • 19
  • 26
4
votes
2 answers

Dynatable broke with Dynamic HTML Headers

I have created a Dynatable, I have dynamically crafted the Table Headers. Dynatable gives an error when it is run as it cant find the Headers in the HTML. ERROR:Uncaught Error: Couldn't find any columns headers in 'thead tr th,td'. If your header…
platinums
  • 634
  • 1
  • 10
  • 21
4
votes
4 answers

How to make pagination working?

I'm trying to create an example of Dynatable with pagination, to do this, I created an html file and a json loaded using Ajax, directly from the same directory as the html file. The data is rendered correctly, te footer says: "Showing 5 of 5 records…
leonardorame
  • 1,131
  • 4
  • 18
  • 35
4
votes
1 answer

Dynatable data-dynatable-no-sort not working

I added the data-dynatable-no-sort attribute to my table header like so: Delete It doesn't work for me though. I added the attribute to the delete column. Why isn't this attribute working?
imz
  • 43
  • 5
3
votes
1 answer

Populate Table With JSON data, based on a parsed CSV file in Jquery, JS

I've tried all day to populate a table dynamically. The purpose for the application is to load a CSV-file and parse it to JSON using Papaparse (great CSV to JSON framework) and then populate a table with this JSON-data, using DynaTable.js. I may be…
Gaute
  • 107
  • 1
  • 1
  • 12
3
votes
0 answers

Does dynatables have to render all the data to an html table? Isn't that really slow for large datasets? How do we workaround it?

I have a dataset with over 35k rows (filesize = 20mb) loaded as a Javascript Object. I want to render it via Dynatables. The process is really slow and locks up my browser. I guess it's because Dynatables renders everything into an html table. I…
vaishaks
  • 145
  • 1
  • 8
3
votes
1 answer

clear dynatable records before new update

I am using dynatable plugin. I want to know how do I clear(remove all records) the table before I insert new records in table. Currently, the table is appending new records to the previous records. My code: response = $.parseJSON(data); …
user3830162
3
votes
1 answer

How to deal with a nested JSON file using Dynatable?

I'm currently trying to load in BLAST data (from a cool biological experiment) and showing it using Dynatable. I'm new to JSON and Javascript but I think I got the beginning up and running. The problem is that the JSON "object" has a nested instance…
EvdH
  • 35
  • 5
2
votes
1 answer

dynatable JS to generate table from json data dynamically

Hello i need help in generating fully dynamic table using dynatable.js or any other js suggestions welcome as well. here are some other Jquery Tables currently i am using php script to call API and save cURL response into .Json file sample of…
2
votes
0 answers

Restricting search on certain columns in jquery dynatable

How can I enable search only for certain columns in dynatable? Right now it is searching in whole record, I have some urls as well in the data which have common part of strings as in the record of one column. Any kind of suggestion or help will be…
Adhum
  • 117
  • 1
  • 12
2
votes
1 answer

Coloring rows based on row values in Dynatable

I'm trying to color rows based on "Status" which can be Red/Green. Using dynatable to generate table rows based from JSON data. The problem is that whenever I call the following code from dynatable, it always gets overwritten by…
2
votes
2 answers

dynamic column names using dynatable.js

I am using dynatable.js to print my json data in table format.When i hard code the with names as jdbc_driver_id and database_id the json data is printed correctly.But the json data received each time is different with different names.I want…
2
votes
2 answers

Search within Dynatable Column using AJAX JSON

I have a dynatable that is populated via an ajax call. All displays well. I understand that in ajax mode, that everything is passed back to the server for processing, and I've got column sorting working. Now I wish to implement column based…
Todd
  • 698
  • 6
  • 19
1
2 3 4 5 6