J
Jerry C
I am working with a asp:menu the NavigateURL is blank I want the menu to
postback . I am using the DynamicItemTemplate. The simple form for the
template is
<DynamicItemTemplate>
<b><%# Eval("Text") %></b> <br /> <%#Eval("ToolTip")%>
</DynamicItemTemplate>
and it look like this for example
Text dkd kdk
ToolTip alkd alkdj fl adjla l dfjaldkfja la dfaldfka laskdflas dflajdf a
aldkjfal ajdf
This works great but I want to format the text in the ToolTip so I can set
the width and allow it to wrap. So it would look like this
Text dkd kdk
ToolTip alkd alkdj fl adjla l dfjaldkfja la dfaldfka
laskdflas dflajdf a aldkjfal ajdf
Code in the dynamicItemTemplate like this formats ok but when I click in the
tooltip text the menu does not work. when I click in the text section it
works OK.
<DynamicItemTemplate>
<b><%# Eval("Text") %></b> <br />
<table Width=250><tr><td width=250> <%#Eval("ToolTip")%> </td></tr></table>
</DynamicItemTemplate>
Thank you
postback . I am using the DynamicItemTemplate. The simple form for the
template is
<DynamicItemTemplate>
<b><%# Eval("Text") %></b> <br /> <%#Eval("ToolTip")%>
</DynamicItemTemplate>
and it look like this for example
Text dkd kdk
ToolTip alkd alkdj fl adjla l dfjaldkfja la dfaldfka laskdflas dflajdf a
aldkjfal ajdf
This works great but I want to format the text in the ToolTip so I can set
the width and allow it to wrap. So it would look like this
Text dkd kdk
ToolTip alkd alkdj fl adjla l dfjaldkfja la dfaldfka
laskdflas dflajdf a aldkjfal ajdf
Code in the dynamicItemTemplate like this formats ok but when I click in the
tooltip text the menu does not work. when I click in the text section it
works OK.
<DynamicItemTemplate>
<b><%# Eval("Text") %></b> <br />
<table Width=250><tr><td width=250> <%#Eval("ToolTip")%> </td></tr></table>
</DynamicItemTemplate>
Thank you