我的清单有问题。实际上我从数据库选择中创建了列表,我对此没有任何问题......但我在显示结果方面遇到了问题。
这是我的列表结果:
L.p | Type | text | description |
------------------------------------
1. | Text |text1 | description 1 |
2. | Text |text2 | description 2 |
3. | Text |text3 | description 3 |
4. | Image |image1| description 4 |
5. | Image |image2| description 5 |
6. | Video |video1| description 6 |
7. | Video |video2| description 7 |
8. | Video |video3| description 8 |
9. | Video |video4| description 9 |
------------------------------------
但我需要显示这样的结果:
L.p | Type | text | description |
------------------------------------
1. | Text |text1 | description 1 |
2. | |text2 | description 2 |
3. | |text3 | description 3 |
4. | | | |
5. | Image |image1| description 4 |
6. | |image2| description 5 |
7. | | | |
8. | Video |video1| description 6 |
9. | |video2| description 7 |
10.| |video3| description 8 |
11.| |video4| description9 |
12.| | | |
13.| | | |
14.| | | |
15.| | | |
16.| | | |
17.| | | |
18.| | | |
19.| | | |
20.| | | |
------------------------------------
如您所见,我得到了: 1. 两种不同类型的空行。2.Category 仅在一行中(第一行) 3. min 结果为 20,因此当我的选择返回仅 10 时,下一个 10 为空行。但是,如果我有超过 20 个结果,我会显示所有结果。
我怎么能那么容易?我正在使用 birt 2.3.2 和 eclipse 插件。
请帮助