~Anita MinasteringsDec 19, 2013, 1:17 AM298 Posts*Did you try wrappng the radio group in a panel and linking the tooltip to that?
~Denise ElhipilyoopsiDec 19, 2013, 8:40 PM68 Poststried everything Yes, I put the radio group in a panel, and linked to the panel. It's already in a Tabbed Panel, and I tried linking to that.
~Anita MinasteringsDec 20, 2013, 3:59 PM298 PostsGot it to work with a toolTipDialogI put the radio button group in a DIV control and used the onMouseOver and onMouseOut events to open the dialog. See the code below. Howard <xp:div id="div1" style="width:373.0px;height:31.0px"> <xp:radioGroup id="radioGroup1"> <xp:selectItem itemLabel="one"></xp:selectItem> <xp:selectItem itemLabel="two"></xp:selectItem> <xp:selectItem itemLabel="three"></xp:selectItem> </xp:radioGroup> <xp:eventHandler event="onmouseover" submit="false"> <xp:this.script><![CDATA[XSP.openTooltipDialog("#{id:tooltipDialog1}","#{id:radioGroup1}" )]]></xp:this.script> </xp:eventHandler> <xp:eventHandler event="onmouseout" submit="false"> <xp:this.script><![CDATA[XSP.closeTooltipDialog("#{id:tooltipDialog1}")]]></xp:this.script> </xp:eventHandler></xp:div> <xp:br></xp:br> <xp:inputText id="inputText1"></xp:inputText> <xp:br></xp:br> <xp:br></xp:br> <xe:tooltipDialog id="tooltipDialog1"> <xp:label value="Label in tooltip dialog" id="label2"> </xp:label></xe:tooltipDialog>
~Maria MintooverflarDec 31, 2013, 2:25 PM18 Poststhanks Thanks Howard, but I still get nothing when I do this. I see the "Label in tooltip dialog" as static text on the page.
~Anita MinasteringsDec 31, 2013, 3:36 PM298 PostsDo you have the extension library?Not sure what version you have but you will need the Extension Library installed if using 8.5.3 or Domino 9 (which comes with the Ext. Lib). Howard
~Maria MintooverflarDec 31, 2013, 3:57 PM18 Poststhanks again I'll try to get the Ext Lib installed ... again ... on the server. I have little control over that in my environment, bu will try again! I have 8.5.2 currently.
~Maria MintooverflarDec 31, 2013, 3:57 PM18 Poststhanks again I'll try to get the Ext Lib installed ... again ... on the server. I have little control over that in my environment, bu will try again! I have 8.5.2 currently.
~Anita MinasteringsDec 31, 2013, 7:05 PM298 PostsMove to at least 8.5.3!Not only do you get the Ext. Library if you move to 8.5.3, you also get a much more stable and performant platform. No one should be using 8.5.2 for XPages work, either for Designer or the server! Too much was fixed in 8.5.3! Howard