I have a help icon next to my header text in my datagrid(v1.1). What I can't get to work is the mouseover and onmouseout events for the help icon image.
Here's the way the HTML sits w/o any mouseover code:
<asp:TemplateColumn HeaderText="EV Method <IMG src=images/help_red_dgheader.gif></IMG>"
HeaderStyle-VerticalAlign="Middle">
For any of my buttons of other help icons, here's the code <asp:Image id="Image2" runat="server" ImageUrl="images\question_mark_30x30.png" BackColor="Transparent"
Visible="True" EnableViewState="False" onmouseover="ddrivetip('To enter a person, ...begin typing the new name value.', 400)"
onmouseout="hideddrivetip()">
</asp:Image>
I tried the following too, but get a script error of unterminated line:
<asp:TemplateColumn HeaderText="EV Method <IMG src=images/help_red_dgheader.gif onmouseover=ddrivetip('Begin typing the new name value.', 400)
onmouseout=hideddrivetip()></IMG>"
HeaderStyle-VerticalAlign="Middle">
I've tried using the \ to get the javascript to use the double quotes, but had no luck.
Thanks!
Here's the way the HTML sits w/o any mouseover code:
<asp:TemplateColumn HeaderText="EV Method <IMG src=images/help_red_dgheader.gif></IMG>"
HeaderStyle-VerticalAlign="Middle">
For any of my buttons of other help icons, here's the code <asp:Image id="Image2" runat="server" ImageUrl="images\question_mark_30x30.png" BackColor="Transparent"
Visible="True" EnableViewState="False" onmouseover="ddrivetip('To enter a person, ...begin typing the new name value.', 400)"
onmouseout="hideddrivetip()">
</asp:Image>
I tried the following too, but get a script error of unterminated line:
<asp:TemplateColumn HeaderText="EV Method <IMG src=images/help_red_dgheader.gif onmouseover=ddrivetip('Begin typing the new name value.', 400)
onmouseout=hideddrivetip()></IMG>"
HeaderStyle-VerticalAlign="Middle">
I've tried using the \ to get the javascript to use the double quotes, but had no luck.
Thanks!