Hi,
I have a calendar made up of usercontrols inside a table, each of the controls are added as targets to the RadToolTipManager (this manager is cleared of targets before adding new ones).
Everything works fine using the load on demand except I have 2 linkbuttons to change the month of the calendar. These have not been added as targets but on selecting them the AjaxUpdate event is fired first.
I have read the blogs and posts regarding ToolTipManager but can't seem to stop this unwantred event from happening. Below is the code for the tooltipmanager:
I have a calendar made up of usercontrols inside a table, each of the controls are added as targets to the RadToolTipManager (this manager is cleared of targets before adding new ones).
Everything works fine using the load on demand except I have 2 linkbuttons to change the month of the calendar. These have not been added as targets but on selecting them the AjaxUpdate event is fired first.
I have read the blogs and posts regarding ToolTipManager but can't seem to stop this unwantred event from happening. Below is the code for the tooltipmanager:
| <telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" |
| Position=BottomCenter |
| ContentScrolling=Auto |
| AutoTooltipify="false" |
| HideDelay=5000 |
| Animation="Fade" |
| Skin="Office2007" |
| Width="450px" |
| Height="200px" |
| ManualClose=false |
| OnAjaxUpdate="RadToolTipManager1_AjaxUpdate" |
| OnClientBeforeShow="tooltipPosition" |
| Style="font-size: 18px; text-align: center; font-family: Arial;"> |
| </telerik:RadToolTipManager> |
with the javascript for the OnClientBeforeShow being:
| function tooltipPosition(sender, args) { |
| sender._popupBehavior.set_keepInScreenBounds(false); |
| } |
The version is 2009.1.311.35.
Any suggestions?
Regards
Roger