Hello @Indinfer,
I have merged your post with this active bug report.
You can take it from here
just updated to 25.8.31.2731 still have the same batch view problems.
i have been facing this same challenge for a while now. batch View has not been working since it always appear as blank sheet.
pls rectify this issue with urgency.
just updated to 25.9.10.2761 and still have the same batch view issues.
Iâm working on resolving the remainder of screens.
just updated to the latest version still have batch view issues.
Hi Lubos, any update on this Batch View issue? Got quite a lot of companies that use this featureâŚ
Batch View working fine on my end â tested it on the Sales Invoice tab and Inventory Item tab. Desktop Edition v25.9.17.2781.
If youâre using a Custom Theme, make sure youâre calling sendResize() at the end of your rendering. Thatâs what tells the parent frame to adjust the height properly. Without it, the iframe might not display the content correctly.
<script>
function sendResize() {
window.parent.postMessage({
type: "resize",
width: document.documentElement.scrollWidth + 1,
height: document.documentElement.scrollHeight + 1
}, "*");
}
document.addEventListener("DOMContentLoaded", () => {
...........
sendResize();
});
window.addEventListener("load", () =>
window.parent.postMessage({ type: "context-request" }, "*")
);
</script>
Batch view has been fixed on customer/supplier statements in the latest version (25.9.19).
25.9.19.2794 batch view still not working. Anywhere that it is a âbatch viewâ tab I get empty blocks as a result. The tabs that have batch operations seem to work properly. customer, special accounts, sale invoice and such not working
@SRX have a look at the latest version (25.9.21). I think nearly all screens should have batch view functioning now.
lubos..thanks! I upgraded to the current and it is indeed working. Thank You! Everything does seem to work. I know these things can be difficult when updating things and one thing can break so many others. I appreciate the continued work to get this all fixed. Again Thank You!