|
Rank: Newbie Groups: Member
Joined: 5/17/2010 Posts: 5
|
Im getting this weird error. Everything is ok in our development environment but once we deploy it to our production, I get this javascript error. Debugging the client code, it has something to do with "height" but the weird thing is that it works fine in our development environment. Any ideas? I'm completely stumped. oh...the only EO object on this page is the grid. Nothing else.
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8) Timestamp: Tue, 22 Jun 2010 21:08:53 UTC
Message: Not implemented
Line: 6 Char: 21304 Code: 0 URI: http://********/*****//eo_web.ashx?id=ce7d2d85-77d4-44b3-9383-3a30db150b47
Message: Object doesn't support this property or method Line: 6 Char: 30041 Code: 0 URI: http://********/*****/eo_web.ashx?id=02f70181-a02b-4be7-8573-1a39585b5c2f
The line that errors out is :
a.style.removeExpression(d);}
Where a ==DispHTMLDivElement and d =="height"
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Do you have the page online so that we can take a look? Please try to isolate the problem into a test page. We have to see the problem happening in order to look further.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 5/17/2010 Posts: 5
|
Our page is not available outside. Here is the markup..
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <title></title> <link href="Css/style_main.css" rel="stylesheet" type="text/css" /> <script src="Js/script_main.js" type="text/javascript"></script> </head> <body style="background-image: url('images/photo.jpg'); background-repeat: no-repeat; background-position: 0px 150px;"> <div id="mainDiv" style="height: 580px; border-width: 1px; border-style: solid; border-color: #000000; width: 80%; padding: 8px; margin-left: auto; margin-right: auto;"> <div style="background-image: url('Images/header.jpg'); background-repeat: no-repeat;"> <table cellspacing="0" cellpadding="0" width="1000px"> <tr> <td style="width:85%;" rowspan="2"> <a href="Default.aspx"> <img src="Images/photo.png" width="246" height="80" alt="banner" style="border:0px;padding:5px;"/> </a> </td> <td width="15%" align="left" valign="middle" style="font-size: smaller; font-weight: bold;"> <UN:UserNameControl ID="UNameCtl" runat="server" IsEnabled="true" /> </td> </tr> <tr> <td align="left" valign="bottom"> <span style="text-align: right; font-family: Verdana; color: White; font-size: 36pt; font-weight: bold;">DHI </span> </td> </tr> </table> </div> <a href="Target.aspx" style="font-size:smaller;">Switch to Target Capture Tool</a> <form id="Form1" runat="server"> <asp:ScriptManager ID="scriptMgr" runat="server"> </asp:ScriptManager> <eo:ScriptManager ID="eoScriptMgr" runat="server"> </eo:ScriptManager> <asp:UpdateProgress ID="uProgress" AssociatedUpdatePanelID="uPanel" runat="server" DisplayAfter="0"> <ProgressTemplate> <div id="divProgress" align="center" runat="server" style="vertical-align:middle; position: absolute;left: 50%;top: 30%;visibility:visible;vertical-align:middle;"> <img src="Images/roller.gif" alt="in progress" /> </div> </ProgressTemplate> </asp:UpdateProgress> <asp:UpdatePanel ID="uPanel" runat="server"> <ContentTemplate> <table cellpadding="8" cellspacing="0" width="1000px"> <tr align="left"> <td> Area: </td> <td> <asp:DropDownList ID="ddlA" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddlA_SelectedIndexChanged"> </asp:DropDownList> </td> <td> SubRegion: </td> <td> <asp:DropDownList ID="ddlSR" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddlSR_SelectedIndexChanged"> </asp:DropDownList> </td> <td> Subsidiary: </td> <td> <asp:DropDownList ID="ddlS" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddlS_SelectedIndexChanged"> </asp:DropDownList> </td> <td> Distributor: </td> <td> <div id="divMultiSelectDropDown1"> <DDMS:MultiSelectDropDown ID="multiSelectDDL" runat="server"></DDMS:MultiSelectDropDown> </div> </td> </tr> <tr style="background-color: White;"> <td colspan="8" style="background-color: White;"> <hr /> </td> </tr> <tr style="background-color: White;"> <td style="background-color: White;"> Month: </td> <td style="background-color: White;" colspan="7"> <asp:DropDownList ID="ddlM" Width="70" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddlM_SelectedIndexChanged"> </asp:DropDownList> </td> </tr> </table> <table width="1000px" runat="server" id="tblGrid" visible="false" cellpadding="0" cellspacing="0"> <tr style="background-color: White;"> <td style="vertical-align:top; background-color:White; width:650px;"> <div style="height:350px; overflow:auto;"> <asp:Repeater ID="gridRepeater" runat="server" OnItemDataBound="gridRepeater_ItemDataBound" EnableViewState="True" OnItemCommand="Repeater_ItemCommand"> <HeaderTemplate> <div style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px; padding-top: 5px"> </HeaderTemplate> <ItemTemplate> <asp:Label ID="Label1" Width="100px" runat="server" Text="Distributor:" Font-Bold="true" Font-Names="Verdana"></asp:Label> <asp:Label runat="server" ID="lblDN" Text='<%# ((Entity)Container.DataItem).DName %>'></asp:Label> <asp:Label ID="HiddenLabelD" runat="server" Text='<%# ((Entity)Container.DataItem).DId %>' Visible="false"></asp:Label> <br /> <asp:Label ID="Label3" Width="100px" runat="server" Text="PAM Alias:" Font-Bold="true" Font-Names="Verdana"></asp:Label> <asp:Label runat="server" ID="lblPA" Text='<%# ((Entity)Container.DataItem).PA %>'></asp:Label> <asp:Label ID="HiddenLabelPName" runat="server" Text='<%# ((Entity)Container.DataItem).PA %>' Visible="false"></asp:Label> <asp:Button ID="ButtonEdit" runat="server" Text="Update" CommandName="Edit" /> <asp:TextBox ID="TextBoxEdit" runat="server" Text='<%# ((Entity)Container.DataItem).PA %>' Visible="false"></asp:TextBox> <asp:Button ID="ButtonSave" runat="server" Text="Save" Visible="false" CommandName="Save" /> <asp:Button ID="ButtonCancel" runat="server" Text="Cancel" Visible="false" CommandName="Cancel" /> <br /> <br /> <eo:Grid ID="gridDM" runat="server" BorderColor="Black" BorderWidth="1px" ColumnHeaderVisible="true" ColumnHeaderAscImage="00050403" ColumnHeaderDescImage="00050404" ColumnHeaderDividerImage="00050402" ColumnHeaderDividerOffset="6" ColumnHeaderHeight="18" Font-Bold="False" Font-Italic="False" Font-Names="Verdana" Font-Overline="False" Font-Size="9pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="240, 240, 240" GridLines="Both" Height="218px" Width="600px" FullRowMode="false" EnableKeyboardNavigation="true" ClientSideOnCellSelected="OnCellSelected" IsCallbackByMe="False" ClientSideOnCellOver="OnClientSideCellOver"> <FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" /> <ItemStyles> <eo:GridItemStyleSet> <ItemStyle CssText="background-color: white" /> <CellStyle CssText="padding-left:8px;padding-top:2px;" /> <SelectedStyle CssText="background-color:#316ac5;color:white;"></SelectedStyle> </eo:GridItemStyleSet> </ItemStyles> <Columns> <eo:StaticColumn Name="IdHeader" Width="350" DataField="Id" Visible="false" /> <eo:StaticColumn Name="Header" Width="350" DataField="Name" ReadOnly="true"> </eo:StaticColumn> <eo:StaticColumn Name="3Header" Width="50" ReadOnly="true" DataField="3Value"> <CellStyle CssText="opacity : 0.4; filter: alpha(opacity=40);background-color: gray;" /> </eo:StaticColumn> <eo:StaticColumn Name="2Header" Width="50" ReadOnly="true" DataField="2Value"> <CellStyle CssText="opacity : 0.4; filter: alpha(opacity=40);background-color: gray;" /> </eo:StaticColumn> <eo:StaticColumn Name="1Header" Width="50" ReadOnly="true" DataField="1Value"> <CellStyle CssText="opacity : 0.4; filter: alpha(opacity=40);background-color: gray;" /> </eo:StaticColumn> <eo:TextBoxColumn Name="CMHeader" Width="50" DataField="CMValue" TextBoxMode="SingleLine" ClientSideEndEdit="EndEdit"><TextBoxStyle CssClass="textboxCentered" /> </eo:TextBoxColumn> <eo:StaticColumn Name="ScoreHeader" Width="50" ReadOnly="true" DataField="SValue"> <CellStyle CssText="opacity : 0.4; filter: alpha(opacity=40);background-color: gray; text-align:center;" /> </eo:StaticColumn> <eo:StaticColumn Name="DefinitionHeader" Width="250" DataField="Definition" Visible="false" /> <eo:StaticColumn Name="DescriptionHeader" Width="250" DataField="Description" Visible="false" /> <eo:StaticColumn Name="FHeader" Width="250" DataField="Frequency" Visible="false" /> <eo:StaticColumn Name="SHeader" Width="250" DataField="ScoringRulesText" Visible="false" /> <eo:StaticColumn Name="VRHeader" Width="250" DataField="ValidationRuleText" Visible="false" /> <eo:StaticColumn Name="DMId" Width="250" DataField="DMId" Visible="false" /> </Columns> <ColumnHeaderStyle CssText="color:#FFFFFF;background-color:LimeGreen;padding-left:8px;padding-top:2px;" /> </eo:Grid> <br /> <br /> <br /> <asp:HiddenField ID="hidDId" runat="server" Value='<%# ((Entity)Container.DataItem).DId %>' /> <asp:HiddenField ID="hidSId" runat="server" Value='<%# ((Entity)Container.DataItem).SId %>' /> </ItemTemplate> <FooterTemplate> </FooterTemplate> </asp:Repeater> <asp:HiddenField ID="hidSLIds" runat="server" /> <asp:HiddenField ID="hidMS" runat="server" Value="false" /> </div> </td> <td style="vertical-align:top; background-color:White;" align="left"> <div style="padding-right:5px; padding-left:5px; padding-bottom:5px; padding-top:5px; overflow:auto; height:300px;"> <asp:Label ID="lblHeader" runat="server" Text="Metric:" Font-Bold="true"></asp:Label> <asp:Label ID="lblValue" runat="server"></asp:Label> <br /> <br /> <asp:Label ID="lblDefinitionHeader" runat="server" Text="Definition:" Font-Bold="true"></asp:Label> <asp:Label ID="lblDefinitionValue" runat="server"></asp:Label> <br /> <br /> <asp:Label ID="lblDescriptionHeader" runat="server" Text="Description:" Font-Bold="true"></asp:Label> <asp:Label ID="lblDescriptionValue" runat="server"></asp:Label> <br /> <br /> <asp:Label ID="lblFHeader" runat="server" Text="Frequency:" Font-Bold="true"></asp:Label> <asp:Label ID="lblFValue" runat="server"></asp:Label> <br /> <br /> <asp:Label ID="lblSHeader" runat="server" Text="Scoring Rules:" Font-Bold="true"></asp:Label> <asp:Label ID="lblSValue" runat="server"></asp:Label> </div> </td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td style="width:50%;"> <asp:Label ID="lblStatus" runat="server"></asp:Label> </td> <td style="width:50%;" align="right"> <asp:Button ID="btnSave" Font-Size="Medium" Font-Bold="true" runat="server" Text="save" OnClick="btnSave_Click" Visible="false" /> </td> </tr> </table> </ContentTemplate> </asp:UpdatePanel> </form> </div> <div id="divPopup" style="display:none; position:absolute; border-style:solid; border-width:thin; background-color: white; padding: 5px; z-index: 99;"> <asp:Label ID="lblPopupMsg" runat="server"></asp:Label> </div> </body> </html>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We need you to create a full test page that we can load and run in our environment to reproduce the problem. Unless we see the problem, there is practically nothing we can do about it. If you have multiple pages, please create a test project and send the whole project to us in zip format. Make sure it runs independently and only contain code that is needed to reproduce the problem.
Thanks!
|
|