Hello,
Is your button search custom or integraded on the pager?
If you button is custom you can use setGridParam and pass the needed values to postData arrray
$(“#mybutton”).click(function(){
$(“#mygrid”).setGridParam({postData:{item1:val1….});
// do a serch here
});
If you use the integraded search button on pager use the beforeShowSearch event and do the same with the posData
Regards
Tony