Page 1 of 1
Feature request on pdf export
Posted: Tue Jan 05, 2010 2:18 am
by Mpanal
When I create editable fields and export the report to pdf, the filed names on pdf are field0, filed1, field2, and so on.
Is possible to controle this naming function?
Now, I can solve it with itextsharp, a free .net library for manipulate Pdf, but an integrated solution from the pdf generation solution will be better.
Thanks you
Feature request on pdf export
Posted: Fri Jan 08, 2010 5:05 pm
by Ivan
Hello,
In the next prerelease build the following static properties will be added:
StiOptions.Export.Pdf.UseEditableFieldName
StiOptions.Export.Pdf.UseEditableFieldAlias
StiOptions.Export.Pdf.UseEditableFieldTag
Now you can, for example, set the StiOptions.Export.Pdf.UseEditableFieldTag property to true, and then write in the Tag property following expression:
{"Editable field " + (sender as StiComponent).Name}
Thank you.
Feature request on pdf export
Posted: Fri Jan 08, 2010 11:00 pm
by Andrew
Hello,
In the next prerelease build the following static properties will be added:
StiOptions.Export.Pdf.UseEditableFieldName
StiOptions.Export.Pdf.UseEditableFieldAlias
StiOptions.Export.Pdf.UseEditableFieldTag
Now you can, for example, set the StiOptions.Export.Pdf.UseEditableFieldTag property to true, and then write in the Tag property following expression:
{"Editable field " + (sender as StiComponent).Name}
Thank you.