~Umberto XanweterFeb 15, 2012, 10:55 PM18 PostsRe: Getting "Infinity" as the result of a @DbColumn in a combobox - figured it out XPages has a 32 or 64 ( can't remember which ) limit for the lookup formula whereas in Notes the limit is only for the whole of the formula e.g. after @unique is applied. It makes it very hard to have meaningful drop downs for filtering data.
~Rex UmremanFeb 16, 2012, 10:52 AM272 PostsRe: Getting "Infinity" as the result of a @DbColumn in a combobox - figured it outHi, you can use SSJS instead: var lookupView:NotesView = database.getView("<LOOKUPVIEW>");lookupView.getColumnValues(0) is equivalent to @DbColumn( "","<LOOKUPVIEW>", 1 ); but brings you the full result w/o the limit. Hope this helpsSven http://blog.hasselba.ch
~Denise ElhipilyoopsiFeb 16, 2012, 3:40 PM68 Poststhanks!I was able to get it working with Type Ahead (a very cool feature). But I appreciate the lookupView tip, that's very useful, thanks!