/home/techb158/immovalet.ca/bower_components/datatables/examples/advanced_init
NameSizeModeActions
column_render.html212030666editdlrm
complex_header.html204650666editdlrm
defaults.html204720666editdlrm
dom_multiple_elements.html204930666editdlrm
dom_toolbar.html206400666editdlrm
dt_events.html207870666editdlrm
events_live.html216050666editdlrm
events_post_init.html224680666editdlrm
events_pre_init.html222800666editdlrm
footer_callback.html224210666editdlrm
highlight.html211300666editdlrm
html_sort.html110230666editdlrm
language_file.html200920666editdlrm
length_menu.html202250666editdlrm
localstorage.html206460666editdlrm
row_callback.html207690666editdlrm
row_grouping.html221850666editdlrm
sorting_control.html208570666editdlrm
Edit: /home/techb158/immovalet.ca/bower_components/datatables/examples/advanced_init/html_sort.html (11023B)
DataTables example
DataTables HTML sorting example

Preamble

DataTables will attempt to automatically detect the data types that your table contains, allowing it to accurately sort and filter this data. This example shows automatic type detection of HTML information - note that the sorting is correct on the second column for the visible information. Additional data types can be added through plug-ins.

Note that prior to DataTables 1.7 the HTML type was not automatically detected, and it was necessary to specify the sType for the column - this is now not needed as seen in this example. If you do want to be able to sort and filter on the HTML information you can specify the sType for the column as 'string'.

Live example

Reflection Link
DataTables DataTables
Integrity A link to Integrity
Integrity Integrity

Initialisation code

$(document).ready(function() {
	$('#example').dataTable();
} );

Other examples