Explore the hidden parts of an application  

By Ulrich Krause | 1/29/18 2:12 AM | - | Added by John Oldenburger

Did you ever ask yourself, where Notes/Domino stores the information about specific application properties like DAOS and NIFNSF and how to get access to this information? Most of the information about an application is accessible by methods and properties in the NotesDatabase class from LotusScript or Java.

MWLUG2015 - Session Slides And Sample Application  

By Ulrich Krause | 8/23/15 2:47 AM | - | Added by John Oldenburger

MWLUG 2015 in Atlanta was a blast. Thanks to all, who have organized the event. Also a big thank you to all, who attended my session. Here is the presentation and the sample database & XML data DOWNLOAD .

Serious issue when signing a database in the background on the server  

By Ulrich Krause | 2/1/15 11:41 AM | - | Added by Johnny Oldenburger

While working with the cAPI, I ran into a nasty problem with signing design elemnts in an application on the server with a different ID than the server ID. This seems only to be a problem with XPages related design elements. When you try to open an XPage from that database in the browser, you will get a 403 Error message.

OpenNTF: TriggerHappy 2.0 (Update)  

By Ulrich Krause | 1/20/14 12:19 AM | - | Added by Niklas Heidloff

TriggerHappy 2.0 for Domino on Linux has been released on OpenNTF. It is still BETA and not intended to be used in production.

Notes 9.0.1 – "Allow ability to load Java code"  

By Ulrich Krause | 11/11/13 12:43 AM | - | Added by Niklas Heidloff

In Notes 9.0.1, a new ECL attribute is introduced – “Allow ability to load Java code”

Life in the fast lane. Full speed XPages  

By Ulrich Krause | 8/23/13 1:27 AM | - | Added by Niklas Heidloff

Here are the slides from my MWLUG presentation on XPages performance optimization. The session was held at the Crowne Plaza Hotel in Indianapolis, IN, USA.

[FollowUp] jQuery Mobile Seems incompatible with XPages in Domino 9.0  

By Ulrich Krause | 4/21/13 7:30 AM | - | Added by Per Henrik Lausten

This is a follow up on an article, David Leedy wrote yesterday I recently ran into an issue with Domino 9 and jQuery Mobile. I had to completely deactivate Dojo. Otherwise the mobile components did not render. But doing so, I would lost all of the XPages functions like partial refresh et al. On friday, my colleague at BCC asked a question on StackOverflow regarding a problem with jQuery Mobile. He finally got it working by ACTIVATING Dojo in the application. Over the weekend, I tried to find out, what was going on. Here are my findings.

Life In The FastLane: Full Speed XPages  

By Ulrich Krause | 3/25/13 1:07 AM | - | Added by Niklas Heidloff

Using XPages out of the box lets you build good looking and well performing applications. However, as XPage applications become bigger and more complex, performance can become an issue and, if it comes to scalability and speed optimization, there are a couple of things to take into consideration.

Get all available language resource files for language selection  

By Ulrich Krause | 2/18/13 12:08 AM | - | Added by Niklas Heidloff

Assume you have built a multi language XPage application and want to add a language switcher to the application. The content for the selector should be build automatically when you add a new language resource to the application.

IBM XPages Performance Masterclass  

By Ulrich Krause | 10/19/12 12:14 AM | - | Added by Niklas Heidloff

From October, 17-18th, XPages Performance MasterClass took place at the IBM Labs in Dublin, Ireland. The event was sponsored by IBM.

How To Use Custom Fonts On Your XPage With CSS  

By Ulrich Krause | 9/29/12 3:43 PM | - | Added by Cn=Bruce Elgort/O=Notesoss

With CSS (Cascading Style Sheets) you can use custom fonts on your Xpage. Normally you only see the fonts that are already installed on your computer. So if you use a font that is not installed on your XPage user’s computer then his or her browser will show some other font that exists on the computer. That’s why when you are defining a font for an element (such as <p>) you often specify multiple fonts so that if your preferred font is not available your CSS file should use the available alternatives.

Display Stackoverflow entries on an XPage  

By Ulrich Krause | 9/23/12 11:51 AM | - | Added by Cn=Bruce Elgort/O=Notesoss

With just a few lines of code, you can display entries from Stackoverflow on an XPage in your custom application. I’ve used the StackUnderflow library.

Wrap The Items In A xe:djextListTextBox  

By Ulrich Krause | 9/18/12 7:27 AM | - | Added by

We use xe:djextListTextBox in our application to display and edit lists of keywords and we ran into the problem, that the list does not automatically breaks to a new line when the overall length exceeds the table cell the xe:djextListTextBox is placed into.

Use RegExp with JavaScript split()  

By Ulrich Krause | 9/11/12 6:09 AM | - | Added by

I you have a string that, for whatever reason, is concatenated using different delimiters, you can use regexp with javascript split() to build an array of single values.

Simple example of Windows native library declaration and usage in XPages  

By Ulrich Krause | 9/9/12 9:44 AM | - | Added by

I would like to share a simple sample on how to access (Windows) DLLs from Java / XPages.