Sorry, comments for this entry are closed at this time.
-
-
Collaboration Today- NotesIn9 112: XPages Mobile Controls Part 3 May 17, 2013 David Leedy
- Using IBM Connections more as a platform than an application - Part Two May 17, 2013 IBM Corp.
- Using IBM Connections more as a platform than an application - Part One May 17, 2013 IBM Corp.
- On OpenNTF: XPages Document Locker Managed Bean May 17, 2013 OpenNTF
- Achieving Real Business Value with IBM Connections May 17, 2013 IBM Redbooks
- Using the Domino Data API in an Android app May 17, 2013 Jens Bruntt
- Show relational data in Domino Designer with Quantum DB Eclipse Plugin and jdbc drivers May 17, 2013 Martin Vereecken
- SnappLinks for IBM Connections adds Scribd support May 17, 2013 Rob Novak
- Simple validation with XPages May 17, 2013 Kathy Brown
- On OpenNTF: Extended FilteringSelected XPages Control May 16, 2013 OpenNTF
Archive
-
Recent Posts
Recent Comments
- Sven Hasselbach on [FollowUp] jQuery Mobile Seems incompatible with XPages in Domino 9.0
- Stephan H. Wissel on Unable to open https sites with self signed certificate on IE 10
- René Winkelmeyer on Unable to open https sites with self signed certificate on IE 10
- Nick Wall on Unable to open https sites with self signed certificate on IE 10
- Luka on Aus Stolz die Insolvenz verschleppt ?
IdeaJam- Domino Administrator / Admin Tools: Please make the 'Database Users' view collapsible
- Notes Client / Mail: Have an option to copy an URL from an e-mail (or other)
- Domino Designer / : Integrated ICS OneUI Editor for Designer
- Domino Server / Other: System wide Web Query Save
- Domino Designer / : Add server and database as optional parameters for @GetProfileField and @SetProfileField
- Domino Designer / : Agent context menu in editor tab eg. "Run Agent"
- Notes Client / Core/Frameworks (Incl. sidebar, rich text editor): Simplification of the preference menu
Little Helpers
Planet Lotus- Domino Administrator / Admin Tools: Please make the 'Database Users' view collapsible
- Notes Client / Mail: Have an option to copy an URL from an e-mail (or other)
- Domino Designer / : Integrated ICS OneUI Editor for Designer
- Domino Server / Other: System wide Web Query Save
- Domino Designer / : Add server and database as optional parameters for @GetProfileField and @SetProfileField
- Domino Designer / : Agent context menu in editor tab eg. "Run Agent"
- Notes Client / Core/Frameworks (Incl. sidebar, rich text editor): Simplification of the preference menu
- Domino Administrator / Admin Tools: New toolbar widget "Console Command"
- Notes Client / Other: Simplify the use of notes plugin for web browsers
- Domino Designer / : Design Element PostSave event
Last referers
- - trusictic(...)s159.html
- - ugzosepu.(...)oide.html
- - ugzosepu.(...)-kub.html
- - mobihisof(...)e-hd.html
Visitors Online
- 09 visitor(s) online
- powered by WassUp



2 Responses to “Use @Transform to build JSON and consume the output in an XAgent”
Setting NotesViewNavigator.VN_ENTRYOPT_NOCOLUMNVALUES as an entry option is not a good idea in this case. This lets the ViewNavigator only read a few ViewEntry properties and no column values. But in your loop, you read the column values via entry.getColumnValues(), which leads to another server transaction to fetch that missing data.
Setting nav.setEntryOptions(NotesViewNavigator.VN_ENTRYOPT_NOCOUNTDATA) should produce a better performance.
By Karsten Lehmann on Jun 1, 2012
Thx, Karsten. Updated the snippet
By Ulrich Krause on Jun 1, 2012