Hi is it possible to disable the search on top of the search column from occurring until after the entire term is loaded (e.g. after a carriage return)?
2 Answers
You need to modify jqgrid_dist.php and change searchOnEnter : true
jQuery("#<?php echo $grid_id?>").jqGrid('filterToolbar',{stringResult: true,searchOnEnter : true, defaultSearch:'cn'});
Your Answer