BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
|
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); |