Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the xp:tooltipDialog widget along with a xp:contentPane widget to show an xpage from another page. This is to show a "business card" for a particular user. I have the following code:

<xp:image url="/person_small.png" id="personImage">
<xp:eventHandler event="onclick" submit="false" id="eventHandler1">
    <xp:this.script><![CDATA[XSP.openTooltipDialog("#{id:personPopup}", "#{id:personImage}")]]></xp:this.script>
</xp:eventHandler>
</xp:image>
<xe:tooltipDialog id="personPopup"
    style="width:420px;height:120px;">
    <xe:djContentPane id="djContentPane1" href="xBusinessCard.xsp?Open&amp;param=personOwner"></xe:djContentPane>
</xe:tooltipDialog>

When running this through the web browser it all works fine. However, when running through the Notes client (8.5.3, Upgrade Pack installed) I get the following message after the first time of clicking;

Tried to register widget with id==dijit_Tooltip_0 but that id is already registered: line #2 Test eForm

As a consequence, all other Dojo/Extension library widgets cease to work from that point onwards (i.e I have a typeahead control on a field which no longer works, but works fine before activating the tooltip).

I've tried changing over to the raw Dojo dijit.layout.ContentPane control but no change to the error.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.