Arabic problem
Posted: Fri Oct 06, 2023 3:28 am
Let dataset = [
{
code: "3992768",
carType: "Dump Truck",
carCompany: "JAC",
carNumber: "2944 ر أ ب",
}
]
I am using node js to generate reports,
when trying to generate the pdf , the carNumber value gives the next problem "lookupType: 7 - substFormat: 1 is not yet supported"
If I removed the Arabic characters from the value it works well.
{
code: "3992768",
carType: "Dump Truck",
carCompany: "JAC",
carNumber: "2944 ر أ ب",
}
]
I am using node js to generate reports,
when trying to generate the pdf , the carNumber value gives the next problem "lookupType: 7 - substFormat: 1 is not yet supported"
If I removed the Arabic characters from the value it works well.