我的祖尔在这里:
<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]
任何人都告诉我如何解决这个问题?
谢谢
前面的 : 是实际约束,之后是"错误消息"。在法语中,约束的设置仍为英语。它应该是:
MESSAGE_NO_NEGATIVE=no negative: valeur ne peut pas être négatif.
寒意寒意。