字段xpages如何接受其他值

时间:2014-06-06 06:27:06

标签: list field xpages

xpages中的编程字段如何能够接受列表中不存在的其他值?

示例字段选择值列表: 炒饭 2.热狗 3.牛排 4.其他......

如何模拟选择"其他"值? 在Notes客户端编程中,我们可以使用字段,不在列表中设置接受值。我们如何在xpages中做到这一点?

我尝试过组合框,设置值列表,但它不能接受列表中没有的值

1 个答案:

答案 0 :(得分:4)

使用扩展程序库中的xe:djComboBox Dojo Combo Box。用户可以选择值输入新值。

示例:

<xe:djComboBox id="djComboBox1" value="#{sessionScope.test}">
        <xp:selectItem itemLabel="Maine"></xp:selectItem>
        <xp:selectItem itemLabel="New Hampshire"></xp:selectItem>
        <xp:selectItem itemLabel="Vermont"></xp:selectItem>
        <xp:selectItem itemLabel="Massachusetts"></xp:selectItem>
        <xp:selectItem itemLabel="Rhode Island"></xp:selectItem>
        <xp:selectItem itemLabel="Connecticut"></xp:selectItem>
</xe:djComboBox>

enter image description here