我的祖尔在这里:
<intbox id="displayOrder"
value="@bind(vm.folderProcessRecord.displayOrder)"
maxlength="6"
constraint=" @load(vm.getText('FolderProcess:MESSAGE_NO_NEGATIVE'))"
tooltiptext="@load(vm.getText('FolderProcess:FIELD_DISPLAY_ORDER'))" />
英语和法语的属性文件。
MESSAGE_NO_NEGATIVE=no negative: Value cannot be negative.
或
MESSAGE_NO_NEGATIVE=pas négatif: valeur ne peut pas être négatif.
我的问题是,只有在选择英语语言时,约束才有效。但是当我选择法语时,不读取约束会产生错误。
错误:
Error writing 'constraint' on type com.Abcdsystems.Abcd.comp.AbcdIntbox at [file:/C:/Abcd_N_WORKSPACE/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/module-web/core/folder_process_edit.zul, line:416]
任何人都知道如何解决这个问题?
由于
答案 0 :(得分:1)
在:是实际约束之前,之后是“错误消息”。 在法语中,您对约束的设置仍然保持英语。 它应该是:
MESSAGE_NO_NEGATIVE=no negative: valeur ne peut pas être négatif.
Greetz chill。