I want to load content from a url in the tooltipDialog and I am using the href property. It just shows a blank toolip? Has anyone gotten this to work?
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:xe="http://www.ibm.com/xsp/coreex">
<xp:label value="Label" id="label1">
<xp:eventHandler event="onclick" submit="false">
<xp:this.script><![CDATA[XSP.openTooltipDialog("#{id:tooltipDialog1}", "#{id:label1}")]]></xp:this.script>
</xp:eventHandler>
</xp:label>
<xe:tooltipDialog id="tooltipDialog1"
href="http://www.netexperts.com" loadingMessage="Loading"
errorMessage="Error">
</xe:tooltipDialog>
</xp:view>
thanks, Howard
Per Daniel’s suggestion, adding a Dojo Content Pane into the tooltipDialog worked fine.