Search posts, tags, users, and pages
Great addon! thanks a lot. Had a quick including in customers dev environment. It works fine. But on preproduction it only partly work. So elements of list will be not created successfully. Any idea where i can fix ? CU, Uwe
Hi Uwe, Thanks again for the kind words, great to hear it’s working in dev!
Just to confirm a few things to help narrow it down: Are you using the plugin from GitHub in preprod too? And was the page exported from dev, or did you set it up separately by installing the plugin and recreating the Dynamic Action?
If it was the latter, missing or misconfigured DA could explain why it only partly works. Also, check if the pagination text (X - Y of Z) is visible, since that’s required for the plugin to attach.
If the script is loaded, you should see debug output in the console that confirms whether the right div is targeted.
Let me know what you find, happy to take a look with you! CU, Jordy
Hi Jordy, thanks for your response.
I've to do in in preproduction manually.
So i check again configuration there.
But there is a little more scuccess in preproduction.
Actually there is a display in (your) ;-) new form in my APEX region.
Only values in list-of-values/dropdown is still wrong. here i have "rows 1 - 1 of 1" (i've 1602 rows).
Here i analyze div as suggested now CU, Uwe
Hi Uwe, Nice progress already, great that the plugin UI is showing up!
If it’s displaying "1 - 1 of 1" in the dropdown, one thing worth checking: what does the original APEX pagination label (the one hidden by the plugin, inside .a-IRR-pagination-label) show?
The plugin reads from that native element, so if it's already showing "1 - 1 of 1", then the issue likely isn't with the plugin, but with the report itself returning fewer rows than expected. Could be a difference in filters, session state, or query logic between environments?
Curious what you find! Sounds like you're getting close. CU, Jordy
Ah i forgot, i'm not using the plugin, i use javascript version.
In my special preproduction case the the variables totalRows and totalPages in java scritp function createPaginationSelect are filled both with 1.
So creation of a list-of-values/dropdown have only one entry. (i tried it setting hardcoded in function to 600 and 6 an everything works).
So, finally my rookie question is where totalRows and totalPages will be selected from.
Cu, Uwe
Jordy Kiesebrink Hi Jordy, I'm sorry to bother you with my specific error... I'm trying to find the differences between the environments. But the “hidden” element that is still available on the page has the following content: 1 - 50 of 1,620 Thanks a lot, Uwe
Jordy Kiesebrink Hi Jordy, i think i found the reason. Still looking for a fix. In my environment i have 1620 rows. So count of rows is displayed (european stile) 1.620. I think the display i have is from 1 leading the display of 1.620. I tested it with a filter, count of rows are round about 700 and it works fine. So i think either the '.' in display, ',' in US stops reading the count of rows or locale with ./, will not be used. Will see to fix it. CU, Uwe
Hi Uwe, You're absolutely right, thanks for sticking with it!
The original version only stripped commas (,) assuming US-style formatting, but didn’t account for European locales where a dot (.) is used as the thousands separator (like 1.620). So the parsing failed silently when it hit the dot.
I’ve just finished a patched version that makes the parsing locale-safe, it now handles both 1,620 and 1.620, as well as formats with spaces like 1 620.
You can download the updated version here: 👉 github.com/smart4solutions/apex_ir_pagination/rel…
Please give it a try in your preprod environment, I’d love to hear if that clears it up!
CU, Jordy
Hi Jordy Kiesebrink thanks a lot. Not tested each case already but it looks pretty good! CU, Uwe