or
my column is like this:
<telerik:GridBoundColumn DataField="TheIntegerColumn" HeaderText="Integer Value" FilterControlWidth="20px" DataType="System.Int32" HeaderStyle-Width="20px" SortExpression="TheIntegerColumn" UniqueName="TheIntegerColumn" ItemStyle-HorizontalAlign="Right"> </telerik:GridBoundColumn>Hi,
just tried to make a simple tooltip - and got following javascript error when runing the page - 'Sys' is undefined
debug stops at:
Sys.WebForms.PageRequestManager._initialize('ScriptManager1', document.getElementById('form1'));
perhaps i missed something?
here aspx:
| <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> |
| <%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" |
| Namespace="System.Web.UI" TagPrefix="asp" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml" > |
| <head id="Head1" runat="server"> |
| <title>Untitled Page</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <asp:ScriptManager ID="ScriptManager1" runat="server"> |
| </asp:ScriptManager> |
| <div> |
| <asp:TextBox ID="txtWithTooltip" runat="server">123</asp:TextBox> |
| <img src="HelpIcon.gif" runat="server" ID="lblPrev" alt="" style="margin-left:17px;vertical-align:middle;"/> |
| <telerik:RadToolTip ID="RadToolTip1" runat="server" TargetControlID="txtWithTooltip" Text="This is a tooltip" IsClientID="true"> |
| </telerik:RadToolTip> |
| <telerik:RadToolTip ID="RadToolTip2" runat="server" TargetControlID="lblPrev" Sticky="true" RelativeTo="Element" Skin="Web20Green" Position="BottomCenter" Text="Previous article: USNews Top 10" IsClientID="true"> |
| </telerik:RadToolTip> |
| </div> |
| </form> |
| </body> |
| </html> |
<Telerik:GridButtonColumn CommandName="Delete" ButtonType="LinkButton" Text="Delete" UniqueName="deleteColumn" /><configuration><system.webServer><modules runAllManagedModulesForAllRequests="false"><remove name="RadCompression"/></modules><httpErrors errorMode="Detailed" /><rewrite> <rules> <rule name="Main Rule" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules></rewrite></system.webServer></configuration><appSettings> <add key="Telerik.Skin" value="Black"/> <add key="Telerik.ScriptManager.TelerikCdn" value="Disabled"/><!-- this was added --> <add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled"/><!-- this was also added --></appSettings>Hi
I need to achieve the following;
Have variable length formatted html text and a tick box in a container control such that the container control has a scroll bar to allow user to scroll down to the end of text and make the tick box visible for the user to tick.
What controls/technique can I use to achieve this? Any pointers would be appreciated.
Many Thanks
Regards