如何使用 DynamicJasper 更改文本元素的标记值?
我正在使用 DynamicJasper 在运行时从某些表生成报告。我有一些字段,在创建数据时使用基本 html 标签对数据进行了样式设置。非常基本的标签(如粗体和斜体)和 jasper 报告可以通过将 textElement 的 markup
属性设置为 html
来处理它们。问题是无法找到使用 DynamicJasper 更改它的方法。
我尝试使用在 ColumnBuilder
中找到的 addFieldProperty("markup", "html")
,但这将标记作为属性添加到字段标记中(可能很明显它应该这样做基于名称)而不是文本元素。
如何使用 DynamicJasper 更改文本元素的标记值?
I am using DynamicJasper to generate reports from some tables at run time. I have some fields that the data has been styled using basic html tags as the data was created. Very basic tags like bold and italic, and jasper reports can handle them by setting the markup
attribute of the textElement to html
. The problem is a can not find a way to change it using DynamicJasper.
I have tried using addFieldProperty("markup", "html")
found in ColumnBuilder
, but that adds markup as a property to the field markup (probably obvious that it should do that based on the name) instead of the text elemennt.
How to you change the markup value for a text element using DynamicJasper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DynamicJasper API 不包含设置
标记
的方法。但是您可以使用 JasperReports API 来满足此需求。
例如, JRBasePrintText 类和 JRCommonText 接口有设置标记的方法:
JRCommonText 接口具有常量字段:
您可以根据需要修改 DynamicJasper 类,如这篇文章。
The DynamicJasper API does not contain methods to set
markup
.But you can use JasperReports API for this needs.
For example, the JRBasePrintText class and JRCommonText interface have method for setting
markup
:The JRCommonText interface has constant fields:
You can modify DynamicJasper classes for your needs like in this post, for example.