Radtooltip is working great under IE6 firefox but not in IE7 and IE8. Tooltip is either out of position or disappear right after.
I used combination of below properties (not sure which one that i should use for dynamic but all work great under IE6 / firefox)
.Show()
.VisibleonPageLoad = true
.RenderInPageRoot = true
.HideEvent = Web.UI.ToolTipHideEvent.ManualClose
Note: All controls are inside of global ajax panel. (I even tried to disable ajax but same result)
Here is my sampe code,
I used combination of below properties (not sure which one that i should use for dynamic but all work great under IE6 / firefox)
.Show()
.VisibleonPageLoad = true
.RenderInPageRoot = true
.HideEvent = Web.UI.ToolTipHideEvent.ManualClose
Note: All controls are inside of global ajax panel. (I even tried to disable ajax but same result)
Here is my sampe code,
| Public Sub ShowPopupMessage(ByVal validationIssues As IValidations) |
| If validationIssues Is Nothing OrElse validationIssues.ErrorCount = 0 Then |
| Exit Sub |
| End If |
| Dim popupMessage As New Telerik.Web.UI.RadToolTip |
| Dim width As Integer = 75 |
| Me.Controls.Add(popupMessage) |
| With popupMessage |
| '.Position = Telerik.Web.UI.ToolTipPosition.BottomRight |
| '.RelativeTo = Telerik.Web.UI.ToolTipRelativeDisplay.BrowserWindow |
| .Position = Telerik.Web.UI.ToolTipPosition.Center |
| .RelativeTo = Telerik.Web.UI.ToolTipRelativeDisplay.BrowserWindow |
| '.Animation = Telerik.Web.UI.ToolTipAnimation.Fade |
| .Animation = Telerik.Web.UI.ToolTipAnimation.None |
| .Title = "Message" |
| .Width = 300 |
| .Height = width * validationIssues.ErrorCount |
| '.Show() |
| '.RenderInPageRoot = True |
| .VisibleOnPageLoad = True |
| .HideEvent = Telerik.Web.UI.ToolTipHideEvent.ManualClose |
| End With |
| popupMessage.Controls.Add(CreateValidationContent(validationIssues)) |
| End Sub |