| General Databases (73) Linux (41) Outside the Cube (5088) Programming (679) Web publishing (65) about DelphiFAQ (14) JavaScript (31) perl CGI (3) VBScript (1) Web Hosting (8) Windows (431) |
Make an HTML table sortable
(1 votes). Leave comments and/ or rate it.
Question: I need to display data in a sortable HTML table. How can I do that?Answer: HTML itself does not offer sorting in the TABLE structure. You need to use javascript for this.I found a free javascript that can be plugged into your site with a minimum of change of your HTML document. Simply include the sortTable.js file into your document - ideally within the HEAD section. Give your table a unique name and also specify the ID property with the same name. Call the initialization initTable() with the ID of your table. If you have multiple tables, you need to call initTable() several times. Make sure to have no row spans. Make sure to have no col spans in the header (you may have it in the data rows though!). You can download the javascript code file here: sortTable.js Here the sorted table in action - click on the table header row to sort by any column:
Comments:
| ||||||||||||||||||||||||||||||