Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
|
Query |
Comments | |
1. |
Is there a way to change the names of the data entries in the FieldList |
You can change field name in the FieldList by using enginePopulated event. Please refer the below code snippet.
Code Snippet:
Note: If you configured field in the data source, you need to use caption property. | |
2. |
do you plan to support Non-English alphabets for the PDF Export, because when you try to export returns the following exception: Error: ArgumentOutOfRangeException:index, The character is not supported by the font. |
Currently we are validating this problem. We will update further details on 11th April, 2019. |
var pdfExportProperties = {
theme: {
header: {font: new PdfTrueTypeFont(base64_Alger, 10) },
caption: { font: new PdfTrueTypeFont(base64_Alger, 10) },
record: { font: new PdfTrueTypeFont(base64_Alger, 10) }
}
};
pivotGridObj.pdfExport(pdfExportProperties); |