Search functionality in HTMLtable to Grid

Search functionality in HTMLtable to Grid

Hi,
My question is related to Search functionality in JQ grid which is converted from Html table.
i'm using tabletogtid(Tabe ID) method to convert the html table to JQ grid.
 
I need to implement search feature in this grid, search should happen locally without calling any action method of controller.
am using the below code to make search textboxes to appear on top of the columns in the grid.
 
$(
"tableId" ).jqGrid( 'setColProp' , '' ,{search: true , stype: 'text' });
$( "tableId" ).jqGrid( 'setColProp' , '' ,{search: true , stype: 'text'});
$("tableId" ).filterToolbar();
 
after entering the search string in search textbox, please let me know how to proceed further in implementing search functionality in the grid.