值选择器从具有多个值的视图中获取项目作为单独的条目

时间:2013-07-23 06:39:24

标签: xpages picker

我得到了部门和该部门相应负责人的观点。其中一些老板有多个部门,所以我在我的视图中使用“将多个值显示为单独的条目”。

enter image description here

但是当我想使用这个视图在我的XPage中使用值选择器时,我会为所有负责多个部门的老板获得方括号:

enter image description here

如何删除这些括号?

1 个答案:

答案 0 :(得分:1)

使用xe:simpleValuePicker代替xe:dominoViewValuePicker

<xe:this.dataProvider>
    <xe:simpleValuePicker>
        <xe:this.valueList><![CDATA[#{javascript:@DbColumn("","YourViewName","YourColumnName")}]]></xe:this.valueList>
    </xe:simpleValuePicker>
</xe:this.dataProvider>

似乎是xe:dominoViewValuePicker中的错误,在我的示例中有相同的方括号。但是使用xe:simpleValuePicker也很简单,因为您只需要编写这一行代码@DbColumn(...