=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.dhisPaging.js' --- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.dhisPaging.js 2011-05-22 19:09:48 +0000 +++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.dhisPaging.js 2011-05-22 19:28:36 +0000 @@ -239,6 +239,13 @@ methods.load("" + id); }); + $filter_input.keypress(function(e) { + if(e.keyCode == 13) { + $filter_button.click(); + e.preventDefault(); + } + }); + $select_page.change(function() { params.currentPage = +$(this).find(":selected").val(); settings.params = params;