jquery Programming Glossary: myreload
How to filter the jqGrid data NOT using the built in search/filter box http://stackoverflow.com/questions/2928371/how-to-filter-the-jqgrid-data-not-using-the-built-in-search-filter-box CityId function return jQuery #CityId option selected .val hospname function return jQuery #HospitalName .val ... var myReload function myGrid.trigger 'reloadGrid' var keyupHandler function e refreshFunction obj var keyCode e.keyCode e.which if keyCode.. 38 up arrow keyCode 40 down arrow if typeof refreshFunction function refreshFunction obj ... #StateId .change myReload .keyup function e keyupHandler e myReload this #CityId .change myReload .keyup function e keyupHandler e myReload this If.. typeof refreshFunction function refreshFunction obj ... #StateId .change myReload .keyup function e keyupHandler e myReload this #CityId .change myReload .keyup function e keyupHandler e myReload this If user change selected option in select box..
|