1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-11-30 12:24:10 +01:00
DataTables/media/unit_testing/tests_onhold/1_dom
2010-09-30 08:17:38 +01:00
..
_zero_config.js Fixed: When displaying full data set with server-side processing (_iDisplayLength = -1), this would incorrectly be shown in the table information - 2440 2010-08-17 18:39:57 +01:00
-complex_header.js Updated: Complex headers have been relaxed such that TH elements no longer need to be unique. There does need to be the correct TH elements with colspans and rowspans which add up, and each column requires at least one TH element for itself, but it is now possible to have two (or more) TH elements for each column. 2010-08-17 23:03:17 +01:00
-iDraw.js New: Infinite scrolling! Building on the scrolling feature set that was introduced with 1.7, you can now have DataTables do infinite scrolling (bScrollInfinite: true), where data is loaded dynamically as and when needed by the user's interaction with scrolling. Infinite scrolling can be used by all DataTables' supported data sources without modification. 2010-09-05 10:21:26 +01:00
2512.js Fixed: Rows with HTML entities and BR tags in them could break filtering in IE and Opera - 2512 2010-08-17 18:47:07 +01:00
2530-2.js Fixed: The width of the table is now not fixed to the width of the container when scrolling is not applied (this is the same behaviour as 1.6-) - 2530 2010-08-21 10:05:07 +01:00
2530.js Fixed: Columns with zero length strings only in them and with a given width would be missed from the width calculations - 2530 2010-08-17 19:00:46 +01:00
2569.js Fixed: Destroying a scrolling table was not correctly reassembling the table from it's component parts which are split up for scrolling. 2010-09-08 20:40:18 +01:00
2600.js Fixed: The 'rewind' of the display start point wasn't being calculated in the same way for server-side processing and client-side. This was due to a bug in the calculation of fnDisplayEnd for server-side - 2600. 2010-09-14 20:19:21 +01:00
2608.js Fixed: Column visibility was not being saved when calling fnSetColumnVis. It would require another draw to save the state before - 2635. 2010-09-14 19:43:04 +01:00
2635.js Fixed: Column visibility was not being saved when calling fnSetColumnVis. It would require another draw to save the state before - 2635. 2010-09-14 19:43:04 +01:00
2746-stable-sort.js Fixed: Stable sorting algorithm was slightly wrong when dealing with values which match each other. The idea for the stable sort is that the position shouldn't change so it should do a numeric sort of the row's current positions (the comment reflected this...) but it was in fact doing the sort on the value (aoData index), thus the "stable sort" position would reflect the original starting positions of the data, rather than the current position. The fix is to correctly look up the position of the index in the array and sort on that position (note the array is cloned, so it doesn't try to sort the dynamically sorted positions, which would make the sort unstable) - 2746 2010-09-30 08:17:38 +01:00
2799.js Fixed: When initialising multiple tables it was possible (no aoColumns given, and different number of columns) for DataTables to get confused and think one table's columns belong to another (due to a non-unique array in the initialisation object which was being wrongly used). 2010-09-20 13:15:06 +01:00
aaSorting.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aaSortingFixed.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.bSearchable.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.bSortable.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.bUseRendered.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.bVisible.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.fnRender.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.iDataSort.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.sClass.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.sName.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.sTitle.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoColumns.sWidth.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
aoSearchCols.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
asStripClasses.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bAutoWidth.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bFilter.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bInfiniteScroll.js Fixed: When infinite scrolling, DataTables would clear it's internal cache of rows on every draw, when server-side processing was being used. This could result in fnGetNodes giving only a subset of the nodes which are visible, rather than the full set (which it now does). 2010-09-15 10:29:03 +01:00
bInfo.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bJQueryUI.js New: When using jQuery UI theme option, DataTables will wrap the contents of sortable TH element in a DIV which can then be used to position the sorting arrow accurately across all columns. The required CSS has been added to the CSS files to show this effect. 2010-09-03 08:33:44 +01:00
bLengthChange.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bPaginate.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bProcessing.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bServerSide.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bSort.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
bSortClasses.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
fnCookieCallback.js Fix: Looser test for IE to pass. Different date format string 2010-08-22 16:18:44 +01:00
fnDrawCallback.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
fnFooterCallback.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
fnHeaderCallback.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
fnInfoCallback.js New: Language callback function for the information element. This can be used to customise the language shown in the information element beyond what is possible with the built in language string options (for example plurals). The arguments are fnInfoCallback( oSettings, iStart, iEnd, iMax /*no filter*/, iTotal /*after filter*/, sOut /*DT rendered string*/ ) - 2520 2010-08-17 23:29:12 +01:00
fnInitComplete.js Fixed: fnInitComplete was being called too early for server-side processing. It is now called after the first draw is complete, like the other data sources. 2010-09-07 21:37:56 +01:00
fnRowCallback.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
iDisplayLength.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.oPaginate.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sInfo.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sInfoEmpty.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sInfoPostFix.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sLengthMenu.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sProcessing.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sSearch.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sUrl.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oLanguage.sZeroRecords.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
oSearch.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
sAjaxSource.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00
sDom.js New: It is now possible to have elements created by sDom have an ID assigned to them as well as a class. An extension of the previous class only syntax you can now do something like "#id.class", "#id" or "class" - 2666 2010-09-08 21:08:52 +01:00
sPaginationType.js Initial commit - DataTables 1.7.0 2010-08-17 08:42:13 +01:00