Hi All
I have Interactive Grid Report and Have check box
SELECT APEX_ITEM.CHECKBOX(1,AA.EMPNO) "Select",
AA.EMPNO,Manager,Salary from EMP;
I created Button to Download to Excel file and used Java code to Download to Excel/PDF Format
var ig$ = apex.region("Report").widget();
ig$.interactiveGrid("getActions").invoke("show-download-dialog");
Download Button is working fine. But it is downloading all Records
My requirement is when user select checkbox Checked only those records need to Download to Excel after user Press “Download” Button
Any Help is appreciated