Hi, I need help please!
My tooltip works fine but the moment one reload the page which is set on some objects then the tooltip does not work!
How can i bypas this or make it reload the xslt file?
<xsl:if test="Tooltip != ''">
<a>
<xsl:attribut e name='href'>#</xsl:attribute>
<xsl:attribut e name='rel'>ttip _<xsl:value-of select='@name' /></xsl:attribute>
<xsl:attribut e name='onClick'> this.blur();ret urn false;</xsl:attribute>
<img src="images/help.jpg" align="texttop" border="0" style='border : none; cursor:default; outline-style:none;'></img>
</a>
<div id="{concat('tt ip_',@name)}" class="balloons tyle" style="width: 230px; border : none;">
<xsl:value-of select="Tooltip " />
</div>
</xsl:if>
<xsl:if test="@dynamic= 'true'">
<xsl:element name="asp:image Button">
<xsl:attribut e name='id'>reloa d_<xsl:value-of select='@name' /></xsl:attribute>
<xsl:attribut e name='runat'>se rver</xsl:attribute>
<xsl:attribut e name='imageurl' >images/CFG/blank.gif</xsl:attribute>
</xsl:element>
</xsl:if>
Please what am i doing wrong?
Regards
My tooltip works fine but the moment one reload the page which is set on some objects then the tooltip does not work!
How can i bypas this or make it reload the xslt file?
<xsl:if test="Tooltip != ''">
<a>
<xsl:attribut e name='href'>#</xsl:attribute>
<xsl:attribut e name='rel'>ttip _<xsl:value-of select='@name' /></xsl:attribute>
<xsl:attribut e name='onClick'> this.blur();ret urn false;</xsl:attribute>
<img src="images/help.jpg" align="texttop" border="0" style='border : none; cursor:default; outline-style:none;'></img>
</a>
<div id="{concat('tt ip_',@name)}" class="balloons tyle" style="width: 230px; border : none;">
<xsl:value-of select="Tooltip " />
</div>
</xsl:if>
<xsl:if test="@dynamic= 'true'">
<xsl:element name="asp:image Button">
<xsl:attribut e name='id'>reloa d_<xsl:value-of select='@name' /></xsl:attribute>
<xsl:attribut e name='runat'>se rver</xsl:attribute>
<xsl:attribut e name='imageurl' >images/CFG/blank.gif</xsl:attribute>
</xsl:element>
</xsl:if>
Please what am i doing wrong?
Regards
Comment