Suche
Kategorien
Über…
Das ist das Blog von Sven Hasselbach über Themen aus der Entwicklung und alles, was ihm sonst so durch den Kopf geht.
Seit 2003 als freiberuflicher Entwickler deutschlandweit im Einsatz, mit dem Schwerpunkten Lotus Notes & XPages, Spring, Java & OSGi
IBM ICS Champion 2013
Um Kontakt mit mir aufzunehmen, einfach eine eMail an contact<at>hasselba.ch schicken oder mich bei XING finden:
Projektanfragen sind immer willkommen!-
Neueste Beiträge
Neueste Kommentare
- Chris Eggenberger bei xsp.application.context.proxy
- Chris Eggenberger bei xsp.application.context.proxy
- Displaying Markdown in an XPage using the showdown.js library - wp2020.focul.net bei XPages: Inject CSJS code at page top
Archive
Meta
Schlagwort-Archive: Designer
XPages: WebContent Files (2) – Manipulate exitsting files using the Java NAPI
In this article, I will shortly give an overview how you can edit existing file from the WebContent folder (Don’t miss the first article on this topic). First, let’s create a view to display the design elements of the WebContent … Weiterlesen
XPages: WebContent Files (1) – Create a file using the Java NAPI
The great Marky Roden has written an interesting article about using the WebContent folder instead of standard domino design elements. To create or manipulate these files programmatically, you can use the Java NAPI. The first example demonstrates the creation of … Weiterlesen
XPages: Use a Method Binding as Converter
I accidentally found a way to add a method binding as a converter to a component, because I have added a managed bean as a converter directly in the source code. The DDE does not support this. If you go … Weiterlesen
Quick-n-Dirty: Upgrading XPiNC / XULRunner
I have tested a small upgrade of XULRunner (the internal browser used for XPiNC applications) and successfully changed the version from 1.9.2.10 to 1.9.2.28 in DDE 8.5.3 and 9.0. Version 1.9.2.10 was released on 15.10.2010 Release Notes for Firefox 3.6.10 … Weiterlesen
XPages: Create your own Required Validators
If you try to implement your own JSF Validator (by implementing javax.faces.validator.Validator), you will notice that you are unable to check for an empty value. The reason for this is rather simple: The method validate() is only called, if there … Weiterlesen
Veröffentlicht unter Java, JSF, ServerSide JavaScript, XPages
Verschlagwortet mit 9.0, Designer, Domino, Java, JSF, ServerSide JavaScript, XPages
4 Kommentare
Quick-n-Dirty: How to add HTML 5 events
One way for adding unsupported events to an XPage or a component is the trick from Keith. But this is limited to CSJS only. If you need to execute a server side event, you just need change the name of … Weiterlesen
Veröffentlicht unter HTML, HTML5, Java Script, ServerSide JavaScript, Web, XPages
Verschlagwortet mit 8.5.3, Designer, Domino, HTML, HTML5, Java Script, Partial Refresh, ServerSide JavaScript, Tipp, Web, XPages
3 Kommentare
Quick-n-Dirty: Import SSJS libraries with DXL
In the last time I have developed different techniques for manipulating the design elements of XPages applications. While I am still working on a way for manipulating the localization files, I was playing a little bit with DXL imports. Here … Weiterlesen
Veröffentlicht unter Allgemein, Java, ServerSide JavaScript, XPages
Verschlagwortet mit 8.5.3, Designer, Domino, Java, ServerSide JavaScript, Tipp, XPages
Schreib einen Kommentar
XPages: UI for editing localization files (1)
For one of my customers I am developing an easy way for editing the localization/translation of existing XPages applications: Instead of importing and exporting the property files with the Domino Designer (which is not an option for non-developers) it would … Weiterlesen
Veröffentlicht unter Java, ServerSide JavaScript, Web, XPages
Verschlagwortet mit 8.5.3, Designer, Domino, HTML, Java, ServerSide JavaScript, Tipp, Web, XPages
Ein Kommentar
XPages: Lost in Translation
The localization feature is really nice and helps a lot, but you also can have some trouble using it. The first problem is that the language codes which are used in XPages are different from the language codes in java.util.Locale. … Weiterlesen
Veröffentlicht unter Allgemein, CSS, HTML, Java Script, Web, XPages
Verschlagwortet mit 8.5.3, CSS, Designer, Domino, HTML, Java Script, Tipp, Web
Schreib einen Kommentar
XPages: Access resources and their content
To access XPages resources during runtime and to get their content as a string, you can use the following SSJS code snippet: <?xml version=“1.0″ encoding=“UTF-8″?> <xp:view xmlns:xp=“http://www.ibm.com/xsp/core“> <xp:label id=“label1″> <xp:this.value><![CDATA[#{javascript: var url = „/WEB-INF/faces-config.xml“; … Weiterlesen
Veröffentlicht unter Java, Java Script, ServerSide JavaScript, XPages
Verschlagwortet mit 8.5.3, Designer, Domino, ServerSide JavaScript, Tipp, XPages
Ein Kommentar