Skip to Main Content

How to change APEX 3.2 interactive report Rows select list to refresh report

APEX 3.2 interactive report Rows select list does not refresh report and you need to click Go button after you selected how many rows you like to display.

Here is how you can easily add onchange event with jQuery to select list and trigger report refresh.

Load jQuery library in page template header or page HTML header.
Place to page HTML header:

<script type="text/javascript">
$(function(){
 $('#apexir_NUM_ROWS').change(function(){gReport.search('SEARCH');});
});
</script>

Comments

No comments yet on this post