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: Domino
XPages: Execute Events with HTTP Get
To execute an event on the server, you normally have to send a POST request, because actions will be executed in the Invoke Application phase of the JSF lifecycle. A GET request will only process the Restore View and the … Weiterlesen
Veröffentlicht unter Dojo Toolkit, Java, Java Script, JSF, Performance, XPages, XSP
Verschlagwortet mit 8.5.3, 9.0, Dojo Toolkit, Domino, HTTP, Java, Java Script, JSF, Performance, XPages, XSP
2 Kommentare
XPages & Angular.js: Accessing Rich Text (1)
If you want to access Rich Text with Angular.js, an easy way to get the content is to use a XPage as handler and grab the content of a XspInputRichText component. The component does all required steps automatically (f.e. it … Weiterlesen
Veröffentlicht unter Allgemein, Angular.js
Verschlagwortet mit Angular.js, Domino, HTML, Java, Java Script, ServerSide JavaScript, Web, XPages
3 Kommentare
The Voices Told Me To Do It!
1. „Create a new com.ibm.xsp.context.FacesContextExImpl!“ 2. „Add all required classed to the build path!“ 3. „Add a useless message to the constructor!“ 4. „BUILD IT!“ 5. „Open the original Jar!“ 6. „In WinRAR!“ 7. „Overwrite the existing classes!“ 8. „Quick! … Weiterlesen
XPages & Angular.js: Fileuploads
When using Angular.js you sooner or later want to upload a file to your Domino server. But to do this, you not only need some nice looking frontend, you also need some code in the backend. For the frontend you … Weiterlesen
Veröffentlicht unter Angular.js
Verschlagwortet mit Angular.js, Domino, HTML, Java Script, ServerSide JavaScript, Web, XPages
2 Kommentare
XPages: Create a Database without Template
On stackoverflow.com, an interessting topic was asked about how to create a notes database programmatically without using a template. The problem is, that it will not contain a Icon document. But in this document are all database properties stored. So … Weiterlesen
Problems with Handles: When the same document is not the same
Disclaimer: This will work in Java, SSJS and Lotus Script. When opening the same document from the same database in different instances, and then recycle one of them, the other documents will be recycled too, because the handle to the … Weiterlesen
Veröffentlicht unter Java, Java Script, Lotus Script
Verschlagwortet mit Domino, Java, Java Script, Lotus Script
Schreib einen Kommentar
XPages: A Bootstrap Skin for CKEditor
I have found a very nice skin for CKEditor, the “BootstrapCK-Skin”. It gives a bootstrap look and feel to the Editor: The dialogs are also skinned: You can find and download the skin here http://kunstmaan.github.io/BootstrapCK-Skin/ To use the skin in … Weiterlesen
Veröffentlicht unter Java Script, Web, XSP
Verschlagwortet mit 9.0, Domino, Java Script, XPages
4 Kommentare
Quick-n-Dirty: Use „isDocEditable“ in an old school Java Agent
If you want to check if a document is editable, you can do this in an old school Java agent with the NAPI function isDocEditable provided by the XSPNative class. First you have to add the required JARs to your … Weiterlesen
XPages: Set a Theme for a single XPage
… or how you can use your own FacesContext implementation. What we need first is our own FacesContext implementation with new methods to set the StlyeKitId (which is the name of the Theme) for initializing the StyleKit instance: package ch.hasselba.xpages; … Weiterlesen
Quick-n-Dirty: A Hotfix for CKEditor 4
Russell Maher wrote a very interesting article about using CKEditor 4 in XPages, but the current solution requires to change to HTML files directly on the server. But with this little Hotfix you can use CKEditor form a NSF an … Weiterlesen
Veröffentlicht unter Java Script, XPages
Verschlagwortet mit 9.0, Domino, Java Script, XPages
3 Kommentare