You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note :** This is the last version to support Rails 4.0.x and Rails 4.1.x
15
15
16
16
17
-
## 0.4.0
17
+
## 0.4.0 (2017-05-21)
18
18
19
19
**Warning:** this version is a **major break** from v0.3. The core has been rewriten to remove dependency on Kaminari (or WillPaginate).
20
20
21
21
It also brings a new (more natural) way of defining columns, based on hash definitions (and not arrays) and add some filtering options for column search. Take a look at the [README](https://github.com/jbox-web/ajax-datatables-rails#customize-the-generated-datatables-class) for more infos.
22
22
23
-
## 0.3.1
23
+
## 0.3.1 (2015-07-13)
24
24
* Adds `:oracle` as supported `db_adapter`. Thanks to [lutechspa](https://github.com/lutechspa) for this contribution.
25
25
26
-
## 0.3.0
26
+
## 0.3.0 (2015-01-30)
27
27
* Changes to the `sortable_columns` and `searchable_columns` syntax as it
28
28
required us to do unnecessary guessing. New syntax is `ModelName.column_name`
29
29
or `Namespace::ModelName.column_name`. Old syntax of `table_name.column_name`
@@ -34,7 +34,7 @@ It also brings a new (more natural) way of defining columns, based on hash defin
34
34
for this contribution.
35
35
* Moves paginator settings to configuration initializer.
36
36
37
-
## 0.2.1
37
+
## 0.2.1 (2014-11-26)
38
38
* Fix count method to work with select statements under Rails 4.1. Thanks to
39
39
[Jason Mitchell](https://github.com/mitchej123) for the contribution.
40
40
* Edits to `README` documentation about the `options` hash. Thanks to
@@ -52,22 +52,22 @@ text-based columns and perform searches depending on the use of `:mysql2`,
52
52
`:sqlite3` or `:pg`. Thanks to [M. Saiqul Haq](https://github.com/saiqulhaq)
53
53
for contributing this feature.
54
54
55
-
## 0.2.0
55
+
## 0.2.0 (2014-06-19)
56
56
* This version works with jQuery dataTables ver. 1.10 and it's new API syntax.
57
57
* Added `legacy` branch to repo. If your project is working with jQuery
58
58
dataTables ver. 1.9, this is the branch you need to pull, or use the last
59
59
`0.1.x` version of this gem.
60
60
61
-
## 0.1.2
61
+
## 0.1.2 (2014-06-18)
62
62
* Fixes `where` clause being built even when search term is an empty string.
63
63
Thanks to [e-fisher](https://github.com/e-fisher) for spotting and fixing this.
64
64
65
-
## 0.1.1
65
+
## 0.1.1 (2014-06-13)
66
66
* Fixes problem on `searchable_columns` where the corresponding model is
67
67
a composite model name, e.g. `UserData`, `BillingAddress`.
68
68
Thanks to [iruca3](https://github.com/iruca3) for the fix.
69
69
70
-
## 0.1.0
70
+
## 0.1.0 (2014-05-21)
71
71
* A fresh start. Sets base class name to: `AjaxDatatablesRails::Base`.
72
72
* Extracts pagination functions to mixable modules.
73
73
* A user would have the option to stick to the base
@@ -85,3 +85,7 @@ Thanks to [iruca3](https://github.com/iruca3) for the fix.
85
85
* Sets generator inside the `Rails` namespace. To generate an
86
86
`AjaxDatatablesRails` child class, just execute the
87
87
generator like this: `$ rails generate datatable NAME`.
0 commit comments