只读文本字段将在编辑模式下显示一个框

readOnly text field will show a box in edit mode

当我进入编辑模式时,我的只读文本字段会显示一个输入框,即使它已被禁止进行任何编辑。

是否可以不显示该框,因为它会误导用户?

您应该覆盖字段的默认值 editTemplate,这样它就只是 returns 文本,而不是被禁用的输入。

您可以 'editing' 为字段设置 false。 例如 'Link' 将是自动生成的字段,您不想看到输入:

fields: [
    { name: "Name", type: "text", width: 150 },
    { name: "Description", type: "text", width: 150, validate: "required" },
    { name: "Link", type: "text", width: 150, editing: false },
    { type: "control" }
]

请阅读 documentation 了解更多信息