Get radio group value with Jquery
Assume you have one radio group name default_lang and you want to know which one is selected
<input name="default_lang" value="en" type="radio" />
<input name="default_lang" value="fr" type="radio" />
<input name="default_lang" value="de" type="radio" />
Well, it’s easy...
How to show the last editor of a document in Domino
How to get the last editors of a document? this little trick (thanks to David Hancock) will help you
@Subset($UpdatedBy;-1)
Simple, isn’t it?
“Object variable not set” error when installing ExtLib
If you try to deploy Xpages Extension Library and get the error
Object variable not set (#91) in:
dlgimportsite: click (line9)
When doing “Import Local Update Site” then the problem might be that your...
How to get parameters from your query string with XPages
So how to get parameters from your query string with SSJS in XPages?
Quick & Easy, here’s the solution, for example: I want to get the value of parameter SelectionMode
context.getUrlParameter("SelectionMode")
There’s another way if...
How to delete a file using SSJS in XPages
It’s easy to do file deletion operation using java.io.File class because the class provides us a delete() method, but unfortunately you can’t use that method inside Domino Designer’s SSJS editor, you...
The following artifacts could not be resolved: javax.jms:jms:jar:1.1
Building a project with maven and have the problem with POM configuration that result in error when compiling
The following artifacts could not be resolved: javax.jms:jms:jar:1.1, javax.media:jai-core:jar:1.1.3, com.sun.media:jai-codec:jar:1.1.3: Could not transfer artifact...
Google Plus Theme for PyroCMS
Worked with PyroCMS recently and this time I tried to make my own theme, inspired by Google Plus
The theme uses FluidGrids CSS Framework for fluid layout and SuperFish for vertical menu dropdown
Here is the screenshot
I...
PYROCMS Tag Reference Cheat Sheet
I started to work on PYRCMS for a few personal projects and found that it’s quite powerful & flexible with my favorite Code Igniter PHP framework.
I looked for a cheat sheet of...