Work with Hide When on a XPage
Each component on a XPage have the "visible" property which can be computed. If computed, your JS should return either //true// or //false// or a empty string (same as //false//) or "1" (same as...
View ArticleWork with URLs
Here is a list of useful URLs for XPages and Domino web development. ==XPages URLs== $$OpenDominoDocument.xsp?id= Opens the document with the given UNID. Tries to find a suitable XPage for opening by...
View ArticleBrowser compatibility
==Internet Explorer 8== IE 8 is supported since Domino 8.5.1. You can force IE8 to act like IE7 by using this code in beforeRenderResponse event: {code:} // first option uses compatibility mode,...
View ArticleHow to create a picklist style dialog
Found in [[http://dominoextnd.blogspot.com/2009/05/xpages-how-to-create-view-picklist.html | Mark Hughes Blog]]: - Create a custom control with a panel, a view inside the panel and other componets as...
View ArticleWork with Dates
==General Tips== While working with dates in server side javascript, I noticed some glichtes in Domino 8.5.0. Here are some rules of thumb: Trying to convert a text to date with @TextToTime() may...
View ArticleSpecial chars and escaping
Non breaking space Using {code:} nbsp; {code} is not allowed, but you can use {code:} 160; {code} instead. Other special chars Use the ; notation. See...
View ArticleUseful tools, tips and keyboard shortcuts for Domino Designer
==Keyboard Shortcuts== CTRL-M: toogle to maximize the active panel / restore all panels CTRL-SHIFT-F: auto-format source code CTRL-SHIFT-PAGEDOWN: switch from Design pane to the Source pane and vice...
View ArticleWork with events and partial or full refresh
==Run a partial update from client javascript== You can use the following function to trigger a partial update from client javascript {code:} XSP.partialRefreshPost(id); {code} "id" is the runtime ID...
View ArticleWork with multimedia
==integrate a mp3 player== If you like to integrate a mp3 player on your site, you can use the the Yahoo Mediaplayer . Usage is pretty simple, only include this in your XPage source code: {code:}
View ArticleWork with tables and tabs
==problem with validators in tabbed table / tabbedPanel== In a xp.tabbedPanel only the first tab is rendered on page load, other tabs are rendered when the user clicks them. Therefore, a full or...
View Article