Giter VIP home page Giter VIP logo

Comments (5)

marcelod avatar marcelod commented on August 14, 2024

@kingjia90
your solution did not work here.here not work, only with
GROUP_CONCAT(codice) as ""
and the filter does not search the value in condice.
Do you could a search of concatenated values​​?
tks

from ignited-datatables.

marcelod avatar marcelod commented on August 14, 2024

if you use group_concat to work need search this field whit having, but as fazer this.
If you use the GROUP_CONCAT function to search this field needs to be with HAVING and WHERE not, but how?

see http://stackoverflow.com/questions/3806830/search-group-concat-using-like

from ignited-datatables.

xtreme8888 avatar xtreme8888 commented on August 14, 2024

Your approach will not work. Just in case someone else get into the same situation. You should make changes to the Datatables library for function get_filtering(), between A and B add below should resolved the group_concat filtering issue.

It basically using Having instead of where when found items in group_concat.

A. $sWhere = '';
B. if($sWhere != '')
$this->ci->db->where('(' . $sWhere . ')');


  $qHaving = '';
  $sSearch = $this->ci->db->escape_like_str($this->ci->input->post('sSearch'));//$this->ci->input->post('sSearch');
  //$sSearch = mysql_real_escape_string($this->ci->input->post('sSearch'));

  $mColArray = array_values(array_diff($mColArray, $this->unset_columns));
  $columns = array_values(array_diff($this->columns, $this->unset_columns));

  if($sSearch != '')
    for($i = 0; $i < count($mColArray); $i++){
      if($this->ci->input->post('bSearchable_' . $i) == 'true' && in_array($mColArray[$i], $columns))
        if (strpos($this->select[$mColArray[$i]],"GROUP_CONCAT")===false) {
          $sWhere .= $this->select[$mColArray[$i]] . " LIKE '%" . $sSearch . "%' OR ";
        } else {
          $qHaving .= $this->select[$mColArray[$i]] . " LIKE '%" . $sSearch . "%' OR ";
        }
    }

  $sWhere = substr_replace($sWhere, '', -3);
  $qHaving = substr_replace($qHaving, '', -3);

  if($qHaving != '') {
    $this->ci->db->having('(' . $qHaving . ')');
    $sWhere = '';
  }

from ignited-datatables.

haider-pw avatar haider-pw commented on August 14, 2024

Is there any other better option.
Cuz when used group_concat, then search is only done in concanated string, not in other columns :(

from ignited-datatables.

n1crack avatar n1crack commented on August 14, 2024

try subqueries when using group functions.

from ignited-datatables.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.