我在jasperreports中有页脚的问题.我想将页面页脚固定在每页的底部.如果详细信息区域中只有一条记录,则页脚会在页面中间的详细区域后面.我已将页脚中元素的"位置类型"设置为"相对于底部固定".但它不起作用.我无法增加细节带的高度,因为它还会增加每个记录之间的空白.谁能帮我?谢谢!
您好,我想知道是否可以更改wicket输出html代码.例如,对于组件"CheckBoxMultipleChoice",您将获得以下html输出.
<span wicket:id="letters">
<input name="letters" type="checkbox" value="0" id="letters_0"/><label for="letters_0">fff</label><br/>
<input name="letters" type="checkbox" value="1" id="letters_1"/><label for="letters_1">aaa</label><br/>
<input name="letters" type="checkbox" value="2" id="letters_2"/><label for="letters_2">bbb</label><br/>
<input name="letters" type="checkbox" value="3" id="letters_3"/><label for="letters_3">ccc</label><br/>
<input name="letters" type="checkbox" value="4" id="letters_4"/><label for="letters_4">ddd</label><br/>
</span>
Run Code Online (Sandbox Code Playgroud)
如果我不想要<br/>标签,我该怎么办?问候