Zk:写'约束'时出错?

时间:2013-12-19 05:26:11

标签: java constraints zk zul

我的祖尔在这里:

 <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]

任何人都知道如何解决这个问题?

由于

1 个答案:

答案 0 :(得分:1)

在:是实际约束之前,之后是“错误消息”。 在法语中,您对约束的设置仍然保持英语。 它应该是:

MESSAGE_NO_NEGATIVE=no negative: valeur ne peut pas être négatif.

Greetz chill。