Hi there, I just upgraded from last years Telerik Ajax to this years latest release. One item that no longer works is our tooltip inside the radgrid. Here is our simple html and a picture of the mess. The style is now bad the scrolling and content is too small and the bottom borders are messed up too.
Picture of issue
Picture of issue
| <telerik:GridTemplateColumn AllowFiltering="false" |
| HeaderStyle-Width="25px" |
| ItemStyle-Width="25px" |
| UniqueName="QuickViewColumn"> |
| <ItemTemplate> |
| <asp:HyperLink runat="server" ID="hl1" style="text-decoration:underline; |
| color:Blue; |
| cursor:pointer;">view |
| </asp:HyperLink> |
| <telerik:RadToolTip ID="rtt1" runat="server" |
| IsClientID="true" |
| Width="600" |
| Height="300" |
| Skin="WebBlue" |
| Position="TopRight" |
| RelativeTo="Element" |
| Sticky="true" |
| ContentScrolling="Y" |
| ShowCallout="false" |
| OffsetX="20" > |
| <%# DataBinder.Eval(Container, "DataItem.Content") %> |
| </telerik:RadToolTip> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |