Ich schreibe das hier mal in English. Habe keine Lust, den Text noch einmal auf Deutsch zu schreiben. Ist im Übrigen ein Doppelposting; habe den gleichen text im IBM Design Partner Forum gepostet. Ach ja, Browserversion ist FF 3.5 und Domino 8.5.2.
I'm trying to use dojox.image.Lightbox and have encountered an issue with dojoType=
I can insert a link to a file into an richtext item and display this link in an xpage.
The source in the RTItem looks like
[ <a href="432D7102A37E69FAC12577B900509ABF/$file/blug.jpg"> REPLACE TEXT </a> ]
In my xpage I see the REPLACE Text string as clickable link. When I click on it, the file is displayed.
I then added dojox.image.Lightbox and Lightbox.css as resources to my custom control.
I also added dojoType="dojox.image.Lightbox" to the above link.
[ <a dojoType="dojox.image.Lightbox" href="432D7102A37E69FAC12577B900509ABF/$file/blug.jpg"> REPLACE TEXT </a> ]
The link is displayed in the browser, but no Lightbox opens when I click the link.
I have looked at the sourcecode in the browser and found that the dojoType is always empty.
<a dojoType="" href="432D7102A37E69FAC12577B900509ABF/$file/blug.jpg"> REPLACE TEXT </a>
Is this a known issue or am I doing something wrong?
PS: I am aware of the fact that there is a space between the square brackets and the HTML code.