I want to create a static HTML file I can email to someone with a lot of data, and have that data sortable and filterable. What is the easiest to use library or package I can use to get this off the ground?
|
|
You can't. You need one of three things to change HTML structure semantically
In theory it's possible to implement this with HTML and CSS alone but that's going to a be a nightmare. Why don't you just add a link to a google document with a sortable table in it, in your email. Of course using JavaScript to implement a sortable table isn't hard.
Just implement |
|||
|
|
|
Check this one at Matt Kruse's Javascript Toolbox. Also you can find DHX DHTMLX very useful. |
|||||||||
|
|
Use XML not HTML, XML is meant to hold data, HTML is meant to create a webpage. Using XML also allows you to use XSLT to manipulate the stored data. Though depending on your definition of large amount of data it may be best to allow access to a database with the information, or import the information to database on their end. |
|||
|
|
|
You Can achieve this easily by using the following, Happy coding, |
|||
|
|
