Hi,
I have not used any image. So image optimization might not be suitable here.
I am using kendo library to design the pdf. My Pdf mostly contains a table with large set of data rows.
Here is my current structure of the template :
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js" integrity=".." crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2021.2.616/styles/kendo.default-v2.min.css" />
<script src="https://kendo.cdn.telerik.com/2021.2.616/js/jquery.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2021.2.616/js/kendo.all.min.js"></script>
<style>
{#asset ../global.css @encoding=utf8}
</style>
</head>
<body aria-hidden="true">
.....
</div>
<script>
....
$("#grid").kendoGrid({
dataSource: {
data: dataValue
},
transitions: false,
scrollable: true,
pageable: false,
groupable: true,
columns: columns,
noRecords: true,
pageable: {
pageSizes: false,
previousNext: false,
numeric: false,
}
});
</script>
</body>
</html>
I am still getting the above mentioned errors.
It will be a great help if you could suggest some more approach on how we could avoid this error.