重复格式化Apex输入字段标签

时间:2018-07-10 17:51:07

标签: salesforce visualforce apex

我在Visual Force页面中使用的SF中设置了一个字段,并且字段标签的格式无法完全配合。

这是我的代码。

import csv
import os
os.getcwd()
os.chdir('filepath')

with open('File1.csv', 'r') as csv1, open('File2.csv', 'r') as csv2:

    file1 = csv1.readlines()`
    file2 = csv2.readlines()`

with open('OutputFile.csv', 'w') as output:

    for line in file1:`
        if line not in file2:
            output.write(line)

output.close()
csv1.close()
csv2.close()

结果是输入字段的标签,该标签允许自动换行。有什么我想念的吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

style上的

<apex:inputField>属性适用于输入本身,而不适用于其旁边的标签。

尝试显式指定标签和输入,像这样吗?

<apex:pageBlockSectionItem>
    <apex:outputLabel value="{!c.label}" style="nowrap magic goes here">
    <apex:inputfield value="{!ghostacc[c.fieldPath]}" required="true" />
</apex:pageBlockSectionItem>