xpages - How to avoid the 64k limit when retrieving data from a view column? -


I know that the SSJS version of @DBColumn () is 64k similarity to the original Formula language version So far, I used the NotesView.getColumnValues ​​() , instead, I believe that here I will not face such a limit

which is clearly wrong , Tells me yesterday as an immediate support call, as well as IBM.

The code in question is used to populate the selectItems control in the combo box; Opens the combo box hosting page and crashes the server's HTTP and consequently the whole server:

    

This is seeing all category entries from one view. I am using the combo as a dynamic category filter in the scene displayed on the same page.

What are the options to retrieve the complete list of all the entries received from the data, even if the data has been received 64k?

Sidenotes:

I know that showing more than 2000 entries in comboBox can not be a concrete utility concept for some, but the customer is the same Loves to be able to see all the available entries at the place, and then be able to select from that list. Solution with a visual panel of at least standard entries, twistsize, and need of step through many pages is not a solution.

The application is running on Domino 9.0.1, WinSrv 2008 / 64k

Fortunately, a JavaScript array is not limited to 64K

  • Create an array var value = []; ,
  • "walking" and values.push ("new value") , via view with Visual Navigator
  • Back Value

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -