开发者

Bullets and numbering within reports

How do you add a bullet list and stylized numbered li开发者_如何转开发st using JasperReports?


Try:

  1. Add static text (or a text field).
  2. Set Markup in the Properties panel to: html
  3. Use the following HTML markup in the text:
<ul>
  <li>bulleted item 1</li>
  <li>bulleted item 2</li>
</ul>
<ol>
  <li>ordered item 1</li>
  <li>ordered item 2</li>
</ol>


The problem starts, where we want to do automatic numbering without CSS styles. I solved this by implementing own JRDataSource.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜