1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2026-03-16 23:55:46 +01:00
Commit graph

394 commits

Author SHA1 Message Date
Max Guglielmi
cbe5d8ef71 Removed commented out code left-overs (2) 2016-11-10 15:56:30 +11:00
Max Guglielmi
777d8df76e Removed commented out code left-overs 2016-11-10 15:50:31 +11:00
Max Guglielmi
a50e0fa4bc Removed element IDs from PopupFilter and CheckList 2016-11-10 15:44:38 +11:00
Max Guglielmi
7370173811 Removed unnecessary DOM element IDs 2016-11-10 14:16:57 +11:00
Max Guglielmi
9db430c1d1 Started id builder helper 2016-11-08 22:40:54 +11:00
Max Guglielmi
e8a2ada208 Removed element IDs from paging 2016-11-05 22:08:32 +11:00
Max Guglielmi
3ff52002e4 Removed element IDs from GridLayout 2016-11-03 22:08:03 +11:00
Max Guglielmi
b99405997a Addressed #332 and continued #319 2016-11-02 23:01:31 +11:00
Max Guglielmi
adb9539ee3 Removed DOM element IDs from StatusBar, PopupFilter and FiltersVisibility 2016-11-02 14:13:44 +11:00
Max Guglielmi
eeffb5b102 Removed element IDs from Loader and NoResults 2016-11-01 20:02:15 +11:00
Max Guglielmi
21305e2e62 Removed element IDs from Help and RowsCounter 2016-11-01 13:58:25 +11:00
Max Guglielmi
0b72eb55b0 Removed clear button container ID 2016-10-31 22:18:21 +11:00
Max Guglielmi
81d7a529ff Stored events list into const in Loader class 2016-10-27 13:33:42 +11:00
Max Guglielmi
d57ede865f Implemented ignore diacritics feature 2016-10-22 13:07:57 +11:00
Max Guglielmi
a885c8caab Issue #313 Made locale.addFormat more defensive 2016-10-19 13:39:59 +11:00
Max Guglielmi
c5b4251039 Started dateType unit tests 2016-10-12 14:15:19 +11:00
Max Guglielmi
288af8b94e Addressed issue-309 2016-10-10 18:16:39 +11:00
Max Guglielmi
0f0ea9f2c4 Addressed PR feedback 2016-10-03 17:07:50 +11:00
Max Guglielmi
e19fc2839e Removed legacy date helper 2016-10-03 15:26:24 +11:00
Max Guglielmi
e276729f1d Improved sort column types handling 2016-09-25 23:44:41 +10:00
Max Guglielmi
e73471e10a Fixed unit tests 2016-09-24 22:17:01 +10:00
Max Guglielmi
07ba2b7718 Merged master in 2016-09-22 14:29:44 +10:00
Max Guglielmi
91b72ed3a2 Fixed broken column calculation extension (continued) 2016-09-22 14:01:50 +10:00
Max Guglielmi
36e6a92fb5 Fixed broken column calculation extension... 2016-09-22 13:54:28 +10:00
Max Guglielmi
8b0bad54cc Fixed tests 2016-09-21 20:24:36 +10:00
Max Guglielmi
0be164c99f Fixed demos 2016-09-21 15:35:45 +10:00
Max Guglielmi
8fa502b2c4 Merged master in, added doco comments to dateType 2016-09-20 23:45:09 +10:00
Max Guglielmi
033a6516cf Initial commit 2016-09-20 13:40:38 +10:00
Max Guglielmi
bfe7293619 Re-refactored number type, continued 2016-09-19 20:35:34 +10:00
Max Guglielmi
7ecb53a701 Re-refactored number type 2016-09-19 17:37:45 +10:00
Max Guglielmi
a0707554bb Continued date 2016-09-17 19:15:25 +10:00
Max Guglielmi
d656ec90b0 Continued sort adapter 2016-09-15 23:39:43 +10:00
Max Guglielmi
c70aa29523 Continued date type 2016-09-14 18:03:45 +10:00
Max Guglielmi
a3c4f2158b Started date type 2016-09-14 00:30:18 +10:00
Max Guglielmi
035801dc7e Initial commit 2016-09-11 00:07:46 +10:00
Max Guglielmi
32ea4a28cc Finalised sortable table adapter 2016-09-06 11:45:27 +10:00
Max Guglielmi
a0019df507 Started adapterSortabletable doco 2016-09-05 23:05:20 +10:00
Max Guglielmi
2bed4c656a Finalised grid layout doco 2016-09-05 19:39:57 +10:00
Max Guglielmi
37c6b70f7e Added comments for auto-generated docs 2016-09-04 18:17:54 +10:00
Max Guglielmi
af75fe5236 Continued commenting for auto-documentation 2016-09-03 23:30:31 +10:00
Max Guglielmi
b20d3c1726 Initial commit 2016-09-03 13:19:55 +10:00
Max Guglielmi
c723b962bf initial commit 2016-09-02 19:26:21 +10:00
Max Guglielmi
aee9c11551 Fixed doco 2016-09-02 13:32:59 +10:00
Max Guglielmi
a173feb26f Started ColOps 2016-09-01 18:27:02 +10:00
Max Guglielmi
6d32d6b5bd Moved clear button CSS class definition in ClearButton class 2016-09-01 18:07:24 +10:00
Max Guglielmi
7ea7e5be5c Finalised TableFilter documentation 2016-08-31 21:13:01 +10:00
Max Guglielmi
17ce8759ac Continued documentation for TableFilter 2016-08-29 19:03:32 +10:00
Archis Gore
fb2f201f29 URL Encode State Hash
You'll notice a mild asymmetry in how hash was
saved vs retrieved.

The retrieval was:
    JSON.parse(decodeUrlComponent(hash))

The save was:
    JSON.stringify(hash)

I modified it to:
    JSON.stringify(encodeUrlComponent(hash))

The reason I noticed this is in one of my apps,
I wanted to be able to copy/share a stateful filter URL.

However without the url encoding, those auto-parsers
of URLs were missing the full filter.

TESTING CONDUCTED:
1. Updated the Hash unit tests to both parse the
   encoded string, as well as generate it.

2. Ran "grunt", which has built/tested/jslinted
   the code.
2016-08-22 09:31:03 -07:00
Max Guglielmi
e770b13320 Additional comments in TableFilter 2016-08-17 17:31:41 +10:00
Max Guglielmi
ed2f638bf2 Continued TableFilter 2016-08-14 14:14:52 +10:00