我有一个包含长数据的组件,我希望该字段默认为一行,多行为长文本。
该物业" noWrap"真或假没有工作:
<af:outputText value="abcd efg hij klmno" id="ot18"/>
我希望看到2行没有任何点,列(在表格中)是:
答案 0 :(得分:1)
要在大于特定大小时输出文本换行,请为其添加宽度内联样式属性:
<af:outputText value="abcd efg hij klmno" id="ot18" inlineStyle="width:200px;"/>
<--Will wrap when bigger than 200px -->
适用于outputText,对于其他容器元素,您必须使用contentStyle属性。