I am trying to add a RadToolTip to a RadTextBox, but it is not working (i.e. nothing shows up when I mouseover the radtextbox). If I swap out my RadTextBox with a regular ASP:Textbox, it works perfectly fine. Is the RadToolTip not compatible with Telerik input controls?? Here is the code that does not work:
<telerik:RadTextBox ID="txtTitle" runat="server" Width="300px" ValidationGroup="vgNewAssign" Skin="Office2007" MaxLength="50">
</telerik:RadTextBox>
<asp:RequiredFieldValidator ID="rfvTitle" runat="server" ErrorMessage="Title is required!" Display="None" ControlToValidate="txtTitle" ValidationGroup="vgNewAssign"></asp:RequiredFieldValidator>
<telerik:RadToolTip ID="ttTitle" Position="MiddleRight" RelativeTo="Element" Skin="Office2007" runat="server" TargetControlID="txtTitle" Text="A brief title for the assignment (required). Limited to 50 characters." Width="300px" AutoCloseDelay="30000" />