<%= RadDockingZone1.FindControl("Dock0").ClientID %>
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
ShowContentDuringLoad
=
"false"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"winPopupRecurrence"
runat
=
"server"
ShowContentDuringLoad
=
"true"
KeepInScreenBounds
=
"true"
Modal
=
"true"
Width
=
"600px"
Height
=
"450px"
>
<
ContentTemplate
>
<
div
>
<
telerik:RadSchedulerRecurrenceEditor
ID
=
"RadRecurrenceEditor"
runat
=
"server"
>
</
telerik:RadSchedulerRecurrenceEditor
>
</
br
>
<
asp:Button
ID
=
"BtnSaveRecurrence"
runat
=
"server"
Text
=
"Save"
CausesValidation
=
"false"
OnClientClick
=
"Close(); return false;"
/>
</
div
>
</
ContentTemplate
>
</
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
winPopupRecurrence.OpenerElementID = LbRecurrencePattern.ClientID;
function pageLoad() {
var $ = $telerik.$;
$(".RecurrenceEditor").children().each(function (i) {
if (i == 0) {
$($($(this).children()[0]).children()[0]).attr("checked", "checked");
}
else if (i == 1)
this.style.display = "block";
});
var $ = $telerik.$;
$(".rsRecurrenceOptionList").children().each(function (i) {
if (i == 0 || i == 4)
$(this).hide();
});
When ever I call registeration page, I get this error. If i ignore, the Page do gets load, but with javascript error.
Looking at some recommendations... we have added following lines in Web.Config, but still the error remains.
<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression="false" enableCaching="true" />
</scripting>
</system.web.extensions>
and
<xhtmlConformance mode="Transitional" />
Regards
JD
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)
Timestamp: Thu, 22 Sep 2011 09:57:03 UTC
Message: ASP.NET Ajax client-side framework failed to load.
Line: 41
Char: 34
Code: 0
URI: http://localhost:1454/user/Register.aspx
Message: 'Sys' is undefined
Line: 55
Char: 1
Code: 0
URI: http://localhost:1454/user/Register.aspx
Message: 'Telerik' is undefined
Line: 661
Char: 3
Code: 0
URI: http://localhost:1454/user/Register.aspx
Message: 'Telerik' is undefined
Line: 802
Char: 9
Code: 0
URI: http://localhost:1454/user/Register.aspx
<
P
>GridDataItem item = e.Item as GridDataItem;<
BR
></
P
>
<
P
>string totala =
item.OwnerTableView.DataKeyValues[dataItem.ItemIndex]["total1"].ToString();<
BR
>string
totalb =
item.OwnerTableView.DataKeyValues[dataItem.ItemIndex]["total2"].ToString();<
BR
></
P
>
<
P
>double a = double.Parse(totala.ToString());<
BR
>double b =
double.Parse(totalb.ToString());<
BR
>double c = a + b;</
P
>
<
P
><
BR
>TableCell tc = new TableCell();<
BR
>tc.Text = c.ToString("c");</
P
>
<
P
><
BR
>item.Cells.Add(tc);<
BR
></
P
>
Any ideas?
<telerik:RadEditor | |
ID="tbNote" | |
runat="server" | |
Width="502px" | |
TextMode="MultiLine" | |
Wrap="True" | |
EditModes="Design" | |
Height="250px" | |
Style="overflow:auto;border: 1px solid navy;" Font-Size="Medium" > | |
<Tools> | |
<telerik:EditorToolGroup Tag="BasicFunctions"> | |
<telerik:EditorTool Name="Cut" /> | |
<telerik:EditorTool Name="Copy" /> | |
<telerik:EditorTool Name="Paste" /> | |
<telerik:EditorSeparator /> | |
<telerik:EditorTool Name="Bold" /> | |
<telerik:EditorTool Name="Italic" /> | |
<telerik:EditorTool Name="Underline" /> | |
<telerik:EditorTool Name="StrikeThrough" /> | |
<telerik:EditorSeparator /> | |
<telerik:EditorTool Name="FindAndReplace" /> | |
... |