When using the search with multiple select, I have a value that introduces a \”-\” before the value to search for, so it shows nothing because it doesn’t find anything. However, other values work correctly. How could that be? Here is the code $col = array(); $col[\”title\”] = \”1ST_INSPECTION\”; $col[\”name\”] = \”FIRST_INSPECTION\”; $col[\”dbname\”] = \”PLM_SEGUIMIENTO.FIRST_INSPECTION\”; $col[\”width\”] = \”100\”; $col[\”align\”] = \”center\”; $col[\”edittype\”] = \”select\”; $col[\”editoptions\”] = array(\”value\”=>\’OK:OK;NOT OK:NOT OK;DO:DO;NO NEED:NO NEED\’); $str = \”OK:OK;NOT OK:NOT OK;DO:DO;NO NEED:NO NEED; :Vacio\”; $col[\”stype\”] = \”select\”; $col[\”searchoptions\”][\”value\”] = $str; $col[\”editable\”] = true; $cols[] = $col; and here you can see the result with -: id_temporada_seleccionada: 13 grid_id: list1 _search: true nd: 1730970286992 rows: 20 jqgrid_page: 1 sidx: 1 sord: asc filters: {\”groupOp\”:\”AND\”,\”rules\”:[{\”field\”:\”FIRST_INSPECTION\”,\”op\”:\”eq\”,\”data\”:\”-OK\”}]} and without – : id_temporada_seleccionada: 13 grid_id: list1 _search: true nd: 1730970326365 rows: 20 jqgrid_page: 1 sidx: 1 sord: asc filters: {\”groupOp\”:\”AND\”,\”rules\”:[{\”field\”:\”FIRST_INSPECTION\”,\”op\”:\”eq\”,\”data\”:\”NOT OK\”}]}
When using the search with multiple select, I have a value that introduces a \”-\” before the value to search for, so it shows nothing because it doesn’t find anything. However, other values work correctly. How could that be?
Here is the code $col = array(); $col[\”title\”] = \”1ST_INSPECTION\”; $col[\”name\”] = \”FIRST_INSPECTION\”; $col[\”dbname\”] = \”PLM_SEGUIMIENTO.FIRST_INSPECTION\”; $col[\”width\”] = \”100\”; $col[\”align\”] = \”center\”; $col[\”edittype\”] = \”select\”; $col[\”editoptions\”] = array(\”value\”=>\’OK:OK;NOT OK:NOT OK;DO:DO;NO NEED:NO NEED\’); $str = \”OK:OK;NOT OK:NOT OK;DO:DO;NO NEED:NO NEED; :Vacio\”; $col[\”stype\”] = \”select\”; $col[\”searchoptions\”][\”value\”] = $str; $col[\”editable\”] = true; $cols[] = $col;
and here you can see the result with -:
id_temporada_seleccionada: 13 grid_id: list1 _search: true nd: 1730970286992 rows: 20 jqgrid_page: 1 sidx: 1 sord: asc filters: {\”groupOp\”:\”AND\”,\”rules\”:[{\”field\”:\”FIRST_INSPECTION\”,\”op\”:\”eq\”,\”data\”:\”-OK\”}]}
and without – :
id_temporada_seleccionada: 13 grid_id: list1 _search: true nd: 1730970326365 rows: 20 jqgrid_page: 1 sidx: 1 sord: asc filters: {\”groupOp\”:\”AND\”,\”rules\”:[{\”field\”:\”FIRST_INSPECTION\”,\”op\”:\”eq\”,\”data\”:\”NOT OK\”}]}