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.
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 . Try this:People
view in names.nsf
@DbColumn("names.nsf", "($VIMPeople)", 1)