我意识到这是另一个基本问题,但我无法确定在XPage中显示行的高度的位置。
我希望能够将行设置为3行的高度(或者如果可能的话动态调整)。
非常感谢。
答案 0 :(得分:1)
根据用于生成行的Xpage控件,将css样式应用于控件。对于重复控制:
<xp:repeat id="repeat1"
value="#{viewdata}"
var="thisRowData"
indexVar="thisRowIndex"
styleClass="css-for-row">
...
</xp:repeat>
应用CSS样式:
<style>
.css-for-row { height:3em;}
<style>
或者使用JQuery:
$('.css-for-row').height('3em');