Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 PCF 页面上的字段设为大写。它是存储在实体中的字段。我正在尝试做:
contact.FirstName.toUpperCase()
但由于它是一个可编辑字段,我不能使用 toUpperCase。有没有办法将 PCF 页面上的文本输入字段格式化为全部大写?
outputConversion您可以使用属性来实现这一点,例如:
outputConversion
<TextInput editable="true" id="FirstName" label="First Name" outputConversion="VALUE.toUpperCase()" value="Person.FirstName"/>
PSinputConversion如果您想在存储数据之前修改数据,还可以使用一个属性。
inputConversion