File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,12 @@ All notable changes to `omines\datatables-bundle` will be documented in this fil
33This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44
55## [ Unreleased]
6+ ### Added
7+ - Implement persist_state parameter to automate table state persistence
8+
69### Fixed
710 - Fixed exception during template rendering when enabling searching serverside
11+ - Fixed sort behavior when defaulting field detection
812
913## [ 0.1.1] - 2017-12-03
1014### Fixed
Original file line number Diff line number Diff line change @@ -108,10 +108,7 @@ private function handleOrderBy(ParameterBag $parameters)
108108 $ this ->orderBy = [];
109109 foreach ($ parameters ->get ('order ' , []) as $ order ) {
110110 $ column = $ this ->getDataTable ()->getColumn ((int ) $ order ['column ' ]);
111-
112- if ($ column ->isOrderable ()) {
113- $ this ->addOrderBy ($ column , $ order ['dir ' ]);
114- }
111+ $ this ->addOrderBy ($ column , $ order ['dir ' ]);
115112 }
116113 }
117114 }
You can’t perform that action at this time.
0 commit comments