Custom cache for Reports
Posted: Fri Oct 20, 2023 10:58 am
I have implemented the custom cache for report.
The report is stored in the server in a file.
I used below code to render the report from cache file
First time when a report render (from actual source of data) the interaction button in my case expand/collapse button is rendering and working fine.
But when i try to render the report from the cache file.
The interaction button is vanishing.
Do there is any that can persist the buttons in the cache too.
The report is stored in the server in a file.
I used below code to render the report from cache file
Code: Select all
if (guid.EndsWith("template")) report.LoadPackedReportFromString(packedReport);
else report.LoadPackedDocumentFromString(packedReport);
But when i try to render the report from the cache file.
The interaction button is vanishing.
Do there is any that can persist the buttons in the cache too.