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
When using Group_CONCAT in the query, filtering will having an issue.
Below is hacking the get_filtering function but works, it will also filtering the fields with group_concat, however, the downside is that you will have to group_concat and distinct every field that you wish to search for.
See if you can find a better approach for group_concat
When using Group_CONCAT in the query, filtering will having an issue.
Below is hacking the get_filtering function but works, it will also filtering the fields with group_concat, however, the downside is that you will have to group_concat and distinct every field that you wish to search for.
See if you can find a better approach for group_concat
$sWhere = '';
$qHaving = '';
$sSearch = $this->ci->db->escape_like_str(trim($this->ci->input->post('sSearch')));
$mColArray = array_values(array_diff($mColArray, $this->unset_columns));
$columns = array_values(array_diff($this->columns, $this->unset_columns));
The text was updated successfully, but these errors were encountered: