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
Currently you are checking to see if a column is orderable in order to perform a global search. You should instead be checking to see if it is searchable.
Currently you are checking to see if a column is orderable in order to perform a global search. You should instead be checking to see if it is searchable.
On /~https://github.com/bllim/laravel4-datatables-package/blob/master/src/Bllim/Datatables/Datatables.php#L517
Change:
if (isset($columns_copy[$i]) && $this->input['columns'][$i]['orderable'] == "true")
To:
if (isset($columns_copy[$i]) && $this->input['columns'][$i]['searchable'] == "true")
The text was updated successfully, but these errors were encountered: