Search code examples
xpagesdesignerlotus-domino

Domino designer/notes xpages @DbColumn


I would like to ask for a help with some beginner issue. I have server named 'xx/yy' and i would like to view in combobox list of users from names.nsf . I created custom controller in designer and added combobox to it. I added this custom control to xpage.

I tried to use formula :

@DbColumn(@DbName()+"names.nsf","People",1);

Can anybody give me some advice?

Thanks.


Solution

  • The code @DbName()+"names.nsf" wil end up concatenating your current database name and names.nsf so it won't work. Also I don't think there is a People view in names.nsf. Try this:

    @DbColumn("names.nsf", "($VIMPeople)", 1)