I have a radgrid that displays some (normal) tooltips for headers and cell content.Take for example the header tooltip for this column:
And a data cell tooltip, set in code behind:
The tooltips stays visible for only about 5 seconds on mouseover and then it dissapears. I want all the tooltips to remain visible onmouseover without dissapearing. How would I do this? I'm looking for a simple solution.
<
telerik:GridBoundColumn
HeaderText="<%$ Resources:IFW_Global, FamilyName %>" HeaderTooltip="<%$ Resources:IFW_Global, FamilyNameTtip %>" UniqueName="column"
AllowFiltering="False" DataField="LastName"
</
telerik:GridBoundColumn
>
And a data cell tooltip, set in code behind:
Dim
item
As
GridDataItem =
CType
(e.Item, GridDataItem)
item(
"DocumentTypeCode"
).ToolTip =
"customdoctooltip"
The tooltips stays visible for only about 5 seconds on mouseover and then it dissapears. I want all the tooltips to remain visible onmouseover without dissapearing. How would I do this? I'm looking for a simple solution.