I have an image inside of a RadToolTip. While everything is functional, the ToolTip displays, and all of the content, I cannot add AlternateText to the image.
It is an asp:Image control:
<
telerik:RadToolTip
ID
=
"RadToolTip1"
runat
=
"server"
RelativeTo
=
"Element"
TargetControlID
=
"myImage"
Skin
=
"Default"
EnableShadow
=
"true"
Position
=
"BottomRight"
AutoCloseDelay
=
"1000"
Sticky
=
"true"
IgnoreAltAttribute
=
"true"
>
<
h2
>An image with alt text</
h2
>
<
asp:Image
ID
=
"Image1"
runat
=
"server"
ImageUrl
=
"~/Path/To/Image.jpg"
AlternateText
=
"Here is description of the image"
/>
</
telerik:RadToolTip
>
I am aware of the IgnoreAltAttribute property but this only refers to the image clicked to open the ToolTip, not images inside of the ToolTip.
How can I prevent alt text from being removed from the contents of the ToolTip?
Any help is appreciated.