Hi, I have a button “Select All” and it has a true dynamic cation “JS Function” to select all the records on the interactive Grid.
apex.region(“payment_info”).widget().interactiveGrid(“getViews”, “grid”).view$.grid(“selectAll”);
This function only selects the record on the page I am currently focusing on. I want to select all the records from all the pages in that Interactive Grid.
Thanks in advance.
Yes, this selects only the records currently visible in the interactive grid.
You can create a dynamic action on the interactive grid on the Page Change or View Change event to execute the same JavaScript code again.
Or, if you know the maximum records that the grid is going to contain, for example, 100 records, then you can change the heading section to Fixed to Region and specify the region height in pixels, for example, 500 in the attribute section of the grid.