Aqui te dejo una funcion que me permite buscar por cualquier campo mostrado en tu grilla:
definiendo la Grilla y el input de busqueda:
<input type=«text» id=«#search_cells»>
<table id=«gridEjemplo»></table>
<div id=«pagerEjemplo»></div>
en tu archivo js
//funcion Buscar
var timer;
$(«#search_cells»).on(«keyup», function() {
var self = this;
if(timer) { clearTimeout(timer); }
timer = setTimeout(function(){
//timer = null;
$(«#gridEjemplo»).jqGrid(‘filterInput’, self.value);
},0);
});
con esta funcion te buscara por cualquier campo mostrado en tu grid.. espero te sirva..!!