Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Menu problem if drop down has in the background

Status
Not open for further replies.

ibike

Programmer
Apr 7, 2003
27
0
0
IT
Hi,
I use the following code to display my menu but when under the sub menu elements has a dropdown box then the dropdown box will appear at the front. Can somehow send them into the back or how can I solve this issue?

<td bgcolor="#005045" nowrap="nowrap" width="136">
<div align="center">
<xsl:choose>
<xsl:when test="MENU_ITEM">
<xsl:text disable-output-escaping="yes">&lt;a class="pulldown_head_white" onMouseOut="FW_startTimeout();MM_swapImgRestore();" onMouseOver="window.FW_showMenu(window.fw_menu_</xsl:text>
<xsl:value-of select="@id"/>
<xsl:text disable-output-escaping="yes">,</xsl:text>
<xsl:call-template name="menuposition">
<xsl:with-param name="menu" select="@id"/>
</xsl:call-template>
<xsl:text disable-output-escaping="yes">,80);"&gt;</xsl:text>
<xsl:value-of select="DESC"/>
<xsl:text disable-output-escaping="yes">&lt;/a&gt;</xsl:text>
</xsl:when>
<xsl:eek:therwise>
<xsl:text disable-output-escaping="yes">&lt;a class="pulldown_head_white"&gt;</xsl:text>
<xsl:value-of select="DESC"/>
<xsl:text disable-output-escaping="yes">&lt;/a&gt;</xsl:text>
</xsl:eek:therwise>
</xsl:choose>
</div>
</td>


 
nothing can be done about that, Select boxes are windowed controls, there is an IFRAME concept here, try a search in the Web...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top