Allan Jardine
df8192e3be
Fix date sorting of empty fields
...
Previously, date sorting of values that
failed to parse as a date were sorted as
if they were 1970-01-01 (Unix and JS epoch).
Now, they sort before other dates.
Example:
https://jsfiddle.net/qae6zjty/1/
2016-08-09 17:47:03 +01:00
Allan Jardine
c256a3d63e
Merge branch 'master' of https://github.com/DataTables/DataTablesSrc
2016-08-09 17:45:58 +01:00
Allan Jardine
7d6decd2ce
Added news tests
2016-08-09 17:45:42 +01:00
Allan Jardine
e42e6f40b4
Dev: Updating Semantic UI libraries to 2.2.1
...
- Fixes issue with the "show x entries" input
- Thread 33814
2016-08-09 17:44:18 +01:00
Allan Jardine
be84e18e8b
Dev: Update moment and add note about test files
2016-08-09 17:37:25 +01:00
Allan Jardine
3a432c5db3
DataTables 1.10.12!
2016-05-20 14:09:02 +01:00
Allan Jardine
82766d393e
Fix: Align "show entries" text correctly for cases where the Semantic UI JS is not available on the page
2016-05-20 14:08:26 +01:00
Allan Jardine
398dd0cede
Dev: Reorder themes, so Bootstrap4 can include Bootstrap3 file if
...
approriate
2016-05-20 14:07:50 +01:00
Allan Jardine
e77fb75e07
Fix: Semantic UI styling with a scrolling table
2016-05-20 12:24:43 +01:00
Allan Jardine
b19d2846cb
Dev: Apply previous fix to Bootstrap 4 as well
2016-05-20 12:24:02 +01:00
Allan Jardine
c804d7a6df
Fix: Apply border-collapse: separate
to Bootstrap styled DataTables
...
- Previously it was only used for tables which were marked with the
`table-bordered`, but that caused issues with scrolling tables which
are borderless.
- See DataTables/FixedColumns #57
2016-05-20 12:23:21 +01:00
Allan Jardine
55d2473d6f
Fix: Remove MySQL specific commands from demo SSP class
...
- SQL_CALC_FOUND_ROWS was used to try and speed the queries up, and that
works well for MySQL, but it confuses anyone who tries to modify this
script for other databases.
- Field escaping should possibly be considered in future as well
2016-05-18 16:34:44 +01:00
Allan Jardine
c8ff61673c
Dev: Update issue template to not use markdown
...
- Doesn't make sense to have MD in a `textarea`
- Thanks Lou for pointing this out!
2016-05-16 12:31:28 +01:00
Allan Jardine
e25a106ecc
New: $.fn.dataTable.util
methods are now overridable (throttle
and escapeRegex
)
...
- It is useful to be able to replace some of the utility methods with
your own custom ones - for example a debounce rather than tha throttle
for filtering.
- This commit reorders the code a little to make that possible. No new
code is present at such - its really about reordering the current code
to make `$.fn.dataTable.util` the host for the original functions.
Backwards compatiblity is provided by assigning the util methods to
their old variables. With the next major update they should be removed
and the util methods used directly.
- Other util methods should be added at the same time, escapeHtml,
unique, etc.
- Fixes DataTables/DataTables #810
2016-05-09 15:25:20 +01:00
Allan Jardine
b66849a676
Update: Update to jQuery 1.12.3
2016-05-02 16:17:43 +01:00
Allan Jardine
8761721627
Dev: Updating the styling of the code blocks in the examples
2016-05-02 16:17:02 +01:00
Allan Jardine
26cbeccba1
Fix - example: Server-side pipelining didn't work when all data is requested
...
- Although this mitigates any benefits of using server-side processing
it is something that should be handled.
- Thanks Hormah for pointing this out.
2016-05-02 16:15:12 +01:00
Allan Jardine
73abf82c1d
Fix: dt-api order()
called with an empty array would cause a JS error
...
- Fixes DataTables/DataTables #800
- Its safe to check for `.length` on `orders` at this point since it can
be either a number, an array or undefined. The number and undefined
conditions have already been checked, so it must be an array (of
whatever length).
2016-04-19 17:51:22 +01:00
Allan Jardine
e6d8429987
Dev: Fix recursion error with Responsive from last commit. Need to be
...
more selective about when we fire `column-visiblity`!
2016-04-19 17:50:49 +01:00
Allan Jardine
938289db93
Dev: A JS error was introduced with the column visiblity change - undefined variable.
...
- Need to use two iterators for the columns visible unfortunately
2016-04-19 17:49:39 +01:00
Allan Jardine
1749cb2b1b
Fix: Performance issue when using columns.visible() as a setter.
...
The column resize was being called for every column.
2016-04-18 15:09:38 +01:00
Allan Jardine
b36cf4bdda
Merge branch 'master' of github.com:DataTables/DataTablesSrc
2016-04-18 15:09:01 +01:00
Allan Jardine
c439436bc7
Fix - example: Direct link to dt-init ajax.data
from its example
2016-04-18 15:08:25 +01:00
Allan Jardine
92a59348ef
Merge pull request #70 from markvantilburg/patch-7
...
Fix: Remove obsolete CSS option for Firefox
2016-04-18 15:07:47 +01:00
Allan Jardine
c4d2ab8e81
Merge pull request #71 from markvantilburg/patch-6
...
Fix: Remove obsolete CSS option for Firefox
2016-04-18 15:07:11 +01:00
Allan Jardine
dd31b8b1f1
Merge pull request #72 from markvantilburg/patch-4
...
Fix: Remove obsolete CSS option for Firefox
2016-04-18 15:06:34 +01:00
Allan Jardine
0a3da850cb
Merge pull request #73 from markvantilburg/patch-2
...
Fix: Remove obsolete CSS option for Firefox
2016-04-18 15:05:59 +01:00
Allan Jardine
2f7feab531
Update jquery.dataTables.scss
2016-04-18 15:05:21 +01:00
Allan Jardine
6a81c5e55a
Update dataTables.uikit.scss
2016-04-18 15:04:45 +01:00
Allan Jardine
6422ea4a9c
Update dataTables.foundation.scss
2016-04-18 15:04:06 +01:00
Allan Jardine
7acd79f7ea
Update dataTables.bootstrap4.scss
2016-04-18 15:03:19 +01:00
Allan Jardine
c6e574314b
Fix - docs: Add dt-init lengthChange
to dt-init dom
related
2016-04-18 15:00:55 +01:00
Allan Jardine
2606595604
Add issue template
2016-03-14 11:44:59 +00:00
Allan Jardine
5859f96088
Fix - example: Add reference to Editor in form example
2016-02-29 15:51:44 +00:00
Allan Jardine
af353c8940
Fix example: Remove reference to retired TableTools extension
2016-02-29 15:51:10 +00:00
Allan Jardine
0312f72ad5
Dev: Update external library dependencies
2016-02-15 15:14:54 +00:00
Allan Jardine
e350e155d2
Fix: Column visiblity count was only correct if the table was actually visble itself. We want to be able to count columns even when the table is not visible.
...
- Thread 33203
2016-02-15 15:14:16 +00:00
Allan Jardine
45ed4f3973
Dev: Version bump
2016-02-15 15:13:38 +00:00
Allan Jardine
d0163e24a0
DataTables 1.10.11 release
2016-02-11 14:30:12 +00:00
Allan Jardine
fa5dc0f900
Dev: Update to include the latest jQuery in the repo
2016-02-11 14:29:35 +00:00
Allan Jardine
f2f35d31f7
Dev: Remove the version attr from bower.json - bower doesn't use it any more
2016-02-11 14:29:00 +00:00
Allan Jardine
9d8ed0d942
New - docs: Documentation for dt-init $.fn.dataTable.ext.errMode
2016-02-11 14:27:38 +00:00
Allan Jardine
b69ccaeb6c
Adding new integration files from the source repo. These are all currently proof of concept / technical previews and not ready for production use.
2016-02-11 10:28:13 +00:00
Allan Jardine
62f92f16f7
Dev: Update readme to refer to the NPM and bower packages for DataTables
2016-02-11 10:27:45 +00:00
Allan Jardine
cf37b3bcfc
Fix: Visible column count should take account of display:none
columns as well as those removed from the DOM by DataTables core. This improves compatiblity with Responsive 2.
2016-02-10 15:05:41 +00:00
Allan Jardine
4ce6614977
Fix: Clear the cached data setter for DOM sourced tables when setting column options. This fixes issues with ColReorder and DOM sourced tables
...
- Fixes DataTables/ColReorder #50 .
2016-02-09 15:29:26 +00:00
Allan Jardine
357ccbce7d
New: UIKit integration tech preview for DataTables
...
- Many thanks to jthsiao at Google for the initial integration work
- Example added
- CSS decompiled to SCSS as it has a bit more structure
- Removed the TableTools integration since TableTools is now retired
- Reduce the gap between the table grid components
- Use single arrow for previous / next paging
Weirdly the UIKit documentation examples don't appear to match up with
what you get if you actually use the UIkit distribution code - see
https://github.com/uikit/uikit/issues/1739 . As such the UIKit /
DataTables example doesn't look as nice as might be expected.
2016-02-05 12:17:43 +00:00
Allan Jardine
f734cdb672
Dev: Add example ordering information for FixedColumns
...
- Really must make some dynamic logic for this...
2016-02-05 12:15:50 +00:00
Allan Jardine
bc5adb493c
Initial integration work for the uikit framework.
...
Updated the mit license with a comment on additional author Google Inc.
2016-02-05 12:15:16 +00:00
Allan Jardine
c0f3242d0d
Dev: Remove trailing comma
2016-02-04 15:46:23 +00:00