我尝试在字段名中使用换行符,因为插入字段是由长字段名称导致的小...我在python文件的字段字符串中尝试了<![CDATA[
]]> and <![CDATA[
]]>
和\ n但没有任何效果。
这是我试图改变的部分,其中wordnumbertwo应该换行。
<attribute name="string">Wordnumberone/ wordnumbertwo</attribute>
有关如何完成换行的任何建议吗?
答案 0 :(得分:0)
最后我解决了这个问题:
对于由expr="pathtofield"
触发的特定字段,旧的css类oe_form_label
将被oe_form_label_new
替换。
<xpath expr="pathtofield" position="attributes">
<attribute name="class">oe_form_label oe_form_label_new</attribute>
</xpath>
要排除我的字段的css类:
.oe_form_label_new {white-space: normal !important;}