rstaib / jquery-bootgrid

Nice, sleek and intuitive. A grid control especially designed for bootstrap.
http://www.jquery-bootgrid.com
MIT License
972 stars 364 forks source link

When search Chinese text #302

Open 24775714 opened 8 years ago

24775714 commented 8 years ago

some times in jquery-bootgrid to search Chinese text,you will get no results.there are not problem of jquery bootgrid,but may be searched mysql fields type problem,for example,you could not get search result when some field type is datetime.

so you could get a if to judge which field fit for do chinese text search,like:

if (preg_match("/[\x7f-\xff]/", $searchPhrase)) {//contain chinese text $where=array( 'deposit_type %'=> '%'.$searchPhrase.'%', ); }else{ $where=array( '|lilv_changed_time %'=> '%'.$searchPhrase.'%', '|deposit_time %'=> '%'.$searchPhrase.'%', '|deposit_type %'=> '%'.$searchPhrase.'%', '|lilv %'=> '%'.$searchPhrase.'%' ); }