PCF 页面大写问题

PCF page issue with capitalization

我正在尝试将 PCF 页面上的字段设为大写。它是存储在实体中的字段。我正在尝试做:

contact.FirstName.toUpperCase()

但是因为它是一个可编辑字段,所以我不能使用 toUpperCase。有没有办法将 PCF 页面上的文本输入字段格式化为全部大写显示?

您可以使用 outputConversion 属性实现此目的,例如:

<TextInput
    editable="true"
    id="FirstName"
    label="First Name"
    outputConversion="VALUE.toUpperCase()"
    value="Person.FirstName"/>

P.S。还有一个 inputConversion 属性,如果你想在存储数据之前修改数据,可以使用它。