The 'problem' with using ToolTipManager (TTM) is that you have to apply the same settings to all of the tooltips on the page (or so it seems to me).
I thought to change that using code like this ...
Needless to say, it doesn't appear to work; the default case seems to try and display something but I couldn't say what; the other case just causes the standard tooltips to appear.
Is it possible to do what it is I'm attempting?
--
Stuart
I thought to change that using code like this ...
| protected void RadToolTipManager1_AjaxUpdate(object sender, Telerik.Web.UI.ToolTipUpdateEventArgs e) |
| { |
| Label l = new Label(); |
| switch (e.TargetControlID) |
| { |
| case "dpCreateDate": |
| case "dpPublicationDate": |
| case "dpReviewDate": |
| RadToolTipManager1.Position = Telerik.Web.UI.ToolTipPosition.MiddleRight; |
| break; |
| default: |
| RadToolTipManager1.Position = Telerik.Web.UI.ToolTipPosition.BottomCenter; |
| break; |
| } |
| } |
Is it possible to do what it is I'm attempting?
--
Stuart