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)?
3 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'});
You can block the new selection until the previous loading completes.
You can enable the overlay of loading by following changes:
1) Add onpage css after the inclusion of css files.
.ui-multiselect-menu {
z-index: 1 !important;
}
2) Set loadui to block, wither in your grid code OR inside lib/inc/jqgrid_dist.php for all grids.
$opt[“loadui”] = “block”;
$g->set_options($opt);
Your Answer