0x800a139e - JavaScript runtime error: SyntaxError
Any ideas?
Hi Telerik,
I had RadEditor working till some time ago the client reported that some features don't work anymore and they get the message "The command <command name> is not implemented yet” .
I’ve tried the same sequence on the SharePoint server browser (IE7) and it works fine. I’ve tested on other servers browsers (even with different version, IE8) and it worked fine with all features.
I made tests with other hosts with different OS version and browser version (even with different browsers) and the result is the same, some features don’t work.
Many thanks
Luís Nuno Silva
<telerik:RadRotator id="RadRotator1" runat="server" SlideShowAnimation-Type="CrossFade"></telerik:RadRotator>public RadRotator GenerateRotatingBanner(SiteBanner banner) { RadRotator thisRotator = new RadRotator(); thisRotator.Width = Unit.Pixel(banner.BannerWidth); thisRotator.ItemWidth = Unit.Pixel(banner.ImageWidth); thisRotator.Height = Unit.Pixel(banner.BannerHeight); thisRotator.ItemHeight = Unit.Pixel(banner.ImageHeight); thisRotator.ScrollDuration = Convert.ToInt32(banner.TransitionTime * 1000); thisRotator.FrameDuration = Convert.ToInt32(banner.FrameDelay * 1000); thisRotator.PauseOnMouseOver = false; thisRotator.ItemTemplate = new RotatorTemplate(); thisRotator.WrapFrames = banner.RotatingFrameWrap; thisRotator.OnClientItemClicked += "OnClientItemClicked"; thisRotator.OnClientItemShowing += "ClientItemShowing"; switch (banner.RotationType.ToLower()) { case "business card": thisRotator.RotatorType = RotatorType.AutomaticAdvance; switch (banner.Direction.ToLower()) { case "up": thisRotator.ScrollDirection = RotatorScrollDirection.Up; break; case "down": thisRotator.ScrollDirection = RotatorScrollDirection.Down; break; case "left": thisRotator.ScrollDirection = RotatorScrollDirection.Left; break; case "right": thisRotator.ScrollDirection = RotatorScrollDirection.Right; break; default: thisRotator.ScrollDirection = RotatorScrollDirection.Left; break; } break; case "carousel": thisRotator.RotatorType = RotatorType.Carousel; break; case "cover flow": thisRotator.RotatorType = RotatorType.CoverFlow; switch (banner.Direction.ToLower()) { case "up": thisRotator.ScrollDirection = RotatorScrollDirection.Up; break; case "down": thisRotator.ScrollDirection = RotatorScrollDirection.Down; break; case "left": thisRotator.ScrollDirection = RotatorScrollDirection.Left; break; case "right": thisRotator.ScrollDirection = RotatorScrollDirection.Right; break; default: thisRotator.ScrollDirection = RotatorScrollDirection.Left; break; } break; case "slide show": thisRotator.RotatorType = RotatorType.SlideShow; thisRotator.SlideShowAnimation.Duration = Convert.ToInt32(banner.TransitionTime * 1000); thisRotator.SlideShowAnimation.Type = Telerik.Web.UI.Rotator.AnimationType.CrossFade; break; default: thisRotator.RotatorType = RotatorType.AutomaticAdvance; switch (banner.Direction.ToLower()) { case "up": thisRotator.ScrollDirection = RotatorScrollDirection.Up; break; case "down": thisRotator.ScrollDirection = RotatorScrollDirection.Down; break; case "left": thisRotator.ScrollDirection = RotatorScrollDirection.Left; break; case "right": thisRotator.ScrollDirection = RotatorScrollDirection.Right; break; default: thisRotator.ScrollDirection = RotatorScrollDirection.Left; break; } break; } return thisRotator; }<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="IconResultsDetailsView.ascx.cs" Inherits="OfficeUI.Controls.SearchResults.IconResultsDetailsView" %><%@ Register Src="~/Controls/SearchResults/FinalIconImagesInSearchResults.ascx" TagName="FinalIconImagesInSearchResults" TagPrefix="uc" %><telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanelIconResultsDetailsView" runat="server" /><telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadGridIconResults"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGridIconResults" LoadingPanelID="RadAjaxLoadingPanelIconResultsDetailsView" /> <telerik:AjaxUpdatedControl ControlID="BulkEditDialog" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="BulkEditDialog"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="BulkEditDialog" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy><telerik:RadGrid ID="RadGridIconResults" runat="server" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" CssClass="RadGridIconResults GridForIconsTab" AllowMultiRowSelection="True" EnableHeaderContextMenu="True" OnItemDataBound="RadGridIconResults_ItemDataBound" OnNeedDataSource="RadGridIconResults_NeedDataSource" OnItemCreated="RadGridIconResults_ItemCreated" AutoGenerateColumns="False" PageSize="200" > <PagerStyle Mode="NextPrevAndNumeric" Position="TopAndBottom" FirstPageImageUrl="/Images/Transparent1x1.png" LastPageImageUrl="/Images/Transparent1x1.png" PrevPageImageUrl="/Images/Transparent1x1.png" NextPageImageUrl="/Images/Transparent1x1.png" PrevPageText="< prev" NextPageText="next >" ShowPagerText="true" EnableSEOPaging="true" /> <ExportSettings ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true" Excel-Format="ExcelML" /> <ClientSettings> <Scrolling AllowScroll="false" /> <Selecting AllowRowSelect="True" UseClientSelectColumnOnly="True" EnableDragToSelectRows="False" /> </ClientSettings> <GroupingSettings CaseSensitive="false" /> <MasterTableView DataKeyNames="BugNumber" CommandItemDisplay="Top" UseAllDataFields="True" EnableHeaderContextMenu="true"> <Columns> <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" HeaderText="Select" /> <telerik:GridImageColumn HeaderText="" UniqueName="Parsed" ShowSortIcon="true" ShowFilterIcon="false" Groupable="False" AllowSorting="true" AllowFiltering="false" /> <telerik:GridBoundColumn DataField="BugNumber" HeaderText="Bug #" EmptyDataText="none" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains" ShowFilterIcon="false" DataFormatString="<nobr>{0}</nobr>"> <HeaderStyle Wrap="false" /> </telerik:GridBoundColumn> </Columns> <RowIndicatorColumn> <HeaderStyle Width="20px" /> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px" /> </ExpandCollapseColumn> </MasterTableView> <ItemStyle Height="45px" BackColor="#EFF3F7" /> <AlternatingItemStyle Height="45px" /></telerik:RadGrid><telerik:RadWindow ID="BulkEditDialog" runat="server" Behaviors="Move, Close, Resize" Width="650px" Height="400px" Modal="True" Title="Review" VisibleStatusbar="False" OnClientClose="OnClientWindowClose" ></telerik:RadWindow><telerik:GridTemplateColumn DataField="ScheduleDate" HeaderButtonType="None" HeaderText="Day" SortExpression="ScheduleDate" UniqueName="ScheduleDate"> <EditItemTemplate> <asp:Label ID="Label_ScheduleDate" runat="server" AssociatedControlID = "RadDatePicker_ScheduleDate"></asp:Label> <telerik:RadDatePicker ID="RadDatePicker_ScheduleDate" UniqueName="RadDatePicker_ScheduleDate" runat="server" Width="80px" Skin="Outlook" MinDate='<%= System.DateTime.Today().AddDays(-30) %>'> <DateInput onclick="$find('<%= RadDatePicker_ScheduleDate.ClientID %>').showPopup();"> </DateInput> <Calendar DayNameFormat="FirstTwoLetters" FirstDayOfWeek="Default"> </Calendar> <DatePopupButton Visible="true" /> </telerik:RadDatePicker> </EditItemTemplate> <ItemTemplate> <asp:Label ID="ScheduleDateLabel" runat="server" Text='<%# Eval("ScheduleDate", "{0:d}") %>'></asp:Label> </ItemTemplate> </telerik:GridTemplateColumn><telerik:RadDock runat="server" ID="rddockPrjTypes" Title="Project Types">
<ContentTemplate>
<telerik:RadGrid runat="server" ID="grdProjectTypes" Skin="Vista" AutoGenerateColumns="False"CssClass="gridnew" GridLines="None" ShowHeader="false">
<ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True">
<Selecting AllowRowSelect="True" />
</ClientSettings>
<MasterTableView NoDetailRecordsText="" NoMasterRecordsText="">
<Columns>
<telerik:GridTemplateColumn UniqueName="TemplateColumn"> <ItemTemplate>
<asp:LinkButton ID="lnkPTypes" runat="server" Text='<%#DataBinder.Eval(Container,"DataItem.projecttypedesc") %>'></asp:LinkButton> (<asp:LinkButton ID="lnkCount" runat="server" Text='<%#DataBinder.Eval(Container,"DataItem.counts") %>'></asp:LinkButton> ) </ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
<EditFormSettings>
<PopUpSettings ScrollBars="None"></PopUpSettings> </EditFormSettings><ExpandCollapseColumn Visible="False" Resizable="False"><HeaderStyle Width="20px"></HeaderStyle></ExpandCollapseColumn> </MasterTableView></telerik:RadGrid> </ContentTemplate></telerik:RadDock>
thanks