From 681ed60d699fa4c724eab0eae2b428d82c868518 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 19 Jun 2014 20:08:19 -0600 Subject: [PATCH] Add DataTables to readme --- includes/extensions/datatables/ext-datatables.php | 4 ++-- .../extensions/datatables/includes/class-admin-datatables.php | 2 +- .../extensions/datatables/includes/class-datatables-data.php | 2 +- .../datatables/includes/class-datatables-template.php | 2 +- readme.txt | 3 +++ 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/includes/extensions/datatables/ext-datatables.php b/includes/extensions/datatables/ext-datatables.php index 34b632a16..67e49ffe6 100644 --- a/includes/extensions/datatables/ext-datatables.php +++ b/includes/extensions/datatables/ext-datatables.php @@ -8,7 +8,7 @@ * @link http://gravityview.co * @copyright Copyright 2014, Katz Web Services, Inc. * - * @since 1.0.3 + * @since 1.0.4 */ if ( ! defined( 'WPINC' ) ) { @@ -54,4 +54,4 @@ function register_templates() { } -new GV_Extension_DataTables; \ No newline at end of file +new GV_Extension_DataTables; diff --git a/includes/extensions/datatables/includes/class-admin-datatables.php b/includes/extensions/datatables/includes/class-admin-datatables.php index dbcd1878d..e7df387fc 100644 --- a/includes/extensions/datatables/includes/class-admin-datatables.php +++ b/includes/extensions/datatables/includes/class-admin-datatables.php @@ -8,6 +8,6 @@ * @link http://gravityview.co * @copyright Copyright 2014, Katz Web Services, Inc. * - * @since 1.0.3 + * @since 1.0.4 */ diff --git a/includes/extensions/datatables/includes/class-datatables-data.php b/includes/extensions/datatables/includes/class-datatables-data.php index e40a4fae3..e484ac73f 100644 --- a/includes/extensions/datatables/includes/class-datatables-data.php +++ b/includes/extensions/datatables/includes/class-datatables-data.php @@ -8,7 +8,7 @@ * @link http://gravityview.co * @copyright Copyright 2014, Katz Web Services, Inc. * - * @since 1.0.3 + * @since 1.0.4 */ diff --git a/includes/extensions/datatables/includes/class-datatables-template.php b/includes/extensions/datatables/includes/class-datatables-template.php index 8795f8fa2..4d587cae7 100644 --- a/includes/extensions/datatables/includes/class-datatables-template.php +++ b/includes/extensions/datatables/includes/class-datatables-template.php @@ -8,7 +8,7 @@ * @link http://gravityview.co * @copyright Copyright 2014, Katz Web Services, Inc. * - * @since 1.0.3 + * @since 1.0.4 */ diff --git a/readme.txt b/readme.txt index 36c43af02..0fcb175ff 100644 --- a/readme.txt +++ b/readme.txt @@ -24,6 +24,8 @@ Beautifully display your Gravity Forms entries. == Changelog == = 1.0.4 = +* Added: __DataTables integration__ Created a new view type for existing forms that uses the [DataTables](http://datatables.net) script. +We're just getting started with what can be done with DataTables. We'll have much more cool stuff like [DataTables Extensions](http://datatables.net/extensions/index). * Added: "Add All Fields" option to bottom of the "Add Field" selector * Added: Per-field-type options structure to allow for different field types to override default Field Settings * Added: Choose how to display User data. In the User field settings, you can now choose to display the "Display Name", username, or ID @@ -38,6 +40,7 @@ Beautifully display your Gravity Forms entries. * Fixed: Sorting issues - Remove the option to sort by composite fields like Name, Address, Product; Gravity Forms doesn't process those sort requests properly - Remove List and Paragraph fields from being sortable + - Known bug: Price fields are sorted alphabetically, not numerically. For example, given $20,000, $2,000 and $20, Gravity Forms will sort the array like this: $2,000, $20, $20,000. We've filed a bug report with Gravity Forms. * Improved: Added visibility toggles to some Field Settings. For example, if the "Show Label" setting is not checked, then the "Custom Label" setting is hidden. * Modified how data is sent to the template: removed the magic methods getter/setters setting the `$var` variable - not data is stored directly as object parameters. * Added many translations. Thanks everyone!