Xpages- combo box returns 'Infinity'

All I’m trying to do is have a combo box display a list of values from a view. There’s got to be something fundamental that I’m missing. Is there some tutorial somewhere with just basic things like how to get values into a combobox from a view column?

Here’s what I did:

  1. Bind the data of a combo box to a field on a document.

  2. Added the following to the values field:

@DbColumn(@DbName(), “(viewOfInterest)”, 1);

Notes: The first column is sorted.

What am I missing?

thanks

clem

Subject: fixed

I think there might have been too many values in the view --40,000 entries. So I created a new view that selected a smaller number and I detached the binding so the values came only from the @DbColumn.

clem