Hello,
I have a navgrid where it shows find records(search) at the bottom of the grid with icon.when we click on that we can select column name equals to some value in textbox and click on find you will get all the filtered records in the grid.
My question is the value which i enetred in textbox in find record should popup in the grid at the top of the empty textbox under specific columnname.
When i clcik on find how can i fire the event and pass the searched value to the empty text box in grid.this is because its easy to export the filtered records.
$("#list").jqGrid('navGrid', '#pager',
{
edit: false,
add: false,
del: false,
search: true,
searchtext: "Search",
reloadAfterSubmit: true,
cloneToTop: true,
overlay: false,
beforeRefresh: function() {
$("#list").setGridParam({ datatype: 'json', page: 1 }).trigger('reloadGrid');
}
});
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top