Welcome Guest Search | Active Topics | Sign In | Register

Script Errors wit EO_Dialog Options
Randy Blackmond
Posted: Tuesday, February 3, 2009 10:33:39 AM
Rank: Newbie
Groups: Member

Joined: 10/23/2008
Posts: 4
When a page that contains the EO_Dialog loads, I keep getting script errors. I can continue and the page will run, but if I perform an action that is supposed to cause the dialog to appear, it doesn't work. Here are the errors I'm getting:

A popup appears in Visual Studio with the following:
htmlfile: Invalid argument.

This code from eo_web.ashx is highlighted in the code window:
this.acx=a.createStyleSheet()

Then I will get the following in a popup:
Microsoft JScript runtime error: Object doesn't support this property or method

And this code from eo_web.ashx is highlighted:
_eo_initobj_ctl00_ContentPlaceHolder1_dlgError()

Now this project was running fine before, and I don't know what could have changed to break this as all I did was change a few background-color values in some other controls on the page. Any help you can offer would be appreciated!
eo_support
Posted: Tuesday, February 3, 2009 10:38:56 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
Hi,

This usually occurs when you have malformed HTML, for example, in the following code the dialog is placed in between a table element and a tr element, which is illegal and will cause problem:

Code: HTML/ASPX
<table>
   <eo:Dialog .....>
    .....
   </eo:Dialog>
   <tr>
       <td>some text</td>
   </tr>
</table>


You can try to comment out your page contents block by block and it should be easy to find out the offending part.

Thanks!
Randy Blackmond
Posted: Tuesday, February 3, 2009 10:50:25 AM
Rank: Newbie
Groups: Member

Joined: 10/23/2008
Posts: 4
eo_support wrote:
Hi,

This usually occurs when you have malformed HTML, for example, in the following code the dialog is placed in between a table element and a tr element, which is illegal and will cause problem:

Code: HTML/ASPX
<table>
   <eo:Dialog .....>
    .....
   </eo:Dialog>
   <tr>
       <td>some text</td>
   </tr>
</table>


You can try to comment out your page contents block by block and it should be easy to find out the offending part.

Thanks!


That's what I was thinking it might be, but everything appears to be fine. Maybe I just need a fresh pair of eyes to spot it. The dialog is at the very bottom. Thanks!

Code: HTML/ASPX
<%@ Page Language="C#" MasterPageFile="~/EPARS-II.Master" AutoEventWireup="true"
    CodeBehind="Review.aspx.cs" Inherits="EPARS_II._Default" Title="EPARS-II" %>

<%@ Register TagPrefix="cc1" Namespace="Infragistics.Web.UI.EditorControls" Assembly="Infragistics35.Web.v8.3, Version=8.3.20083.1009, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
<%@ Register TagPrefix="ignav" Namespace="Infragistics.WebUI.UltraWebNavigator" Assembly="Infragistics35.WebUI.UltraWebNavigator.v8.3, Version=8.3.20083.1009, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
<%@ Register TagPrefix="igmisc" Namespace="Infragistics.WebUI.Misc" Assembly="Infragistics35.WebUI.Misc.v8.3, Version=8.3.20083.1009, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
<%@ Register TagPrefix="igtxt" Namespace="Infragistics.WebUI.WebDataInput" Assembly="Infragistics35.WebUI.WebDataInput.v8.3, Version=8.3.20083.1009, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace="System.Web.UI" TagPrefix="asp" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <ignav:UltraWebMenu ID="uwmMenu" runat="server" EnableAppStyling="True" JavaScriptFilename=""
        JavaScriptFileNameCommon="" OnMenuItemClicked="uwmMenu_MenuItemClicked" Width="100%"
        AutoPostBack="True" TargetFrame="" TargetUrl="">
        <IslandStyle BackColor="LightGray" BorderStyle="Outset" BorderWidth="1px" Cursor="Default">
        </IslandStyle>
        <HoverItemStyle BackColor="DarkBlue" Cursor="Default" ForeColor="White">
        </HoverItemStyle>
        <Images>
            <SubMenuImage Url="ig_menuTri.gif" />
        </Images>
        <ItemStyle Cursor="Default" />
        <Items>
            <ignav:Item Text="Personal Review">
            </ignav:Item>
            <ignav:Item Text="Supervisor Review">
            </ignav:Item>
            <ignav:Item Text="Joint Review">
            </ignav:Item>
            <ignav:Item Text="Status Report">
            </ignav:Item>
            <ignav:Item Text="Employee Maintenance">
            </ignav:Item>
        </Items>
        <DisabledStyle Font-Names="MS Sans Serif" Font-Size="8pt" ForeColor="Gray">
        </DisabledStyle>
        <Levels>
            <ignav:Level Index="0" />
        </Levels>
        <SeparatorStyle BackgroundImage="ig_menuSep.gif" CssClass="SeparatorClass" CustomRules="background-repeat:repeat-x; " />
        <ExpandEffects ShadowColor="LightGray"></ExpandEffects>
        <MenuClientSideEvents InitializeMenu="" ItemChecked="" ItemClick="" SubMenuDisplay=""
            ItemHover=""></MenuClientSideEvents>
    </ignav:UltraWebMenu>
    <div style="width: 1024px">
        <div style="float: left; padding-top: 2px; padding-left: 5px">
            <asp:Label ID="lblReviewType" runat="server" Font-Size="16px" ForeColor="White"></asp:Label>
        </div>
        <div style="clear: right; float: right;">
            <asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_Click" />
        </div>
    </div>
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            <div style="width: 1024px">
                <div id="reviewinfo" visible="false" runat="server" style="width: 100%">
                    <div id="hdrdesc" style="width: 100%; height: 130px; background-image: url('images/grad_panel.png');
                        background-repeat: no-repeat; z-index: 0;">
                        <table cellpadding="3" cellspacing="0" border="0" width="100%">
                            <tr>
                                <td class="infocells">
                                    <asp:Label ID="Label2" runat="server" Text="Employee Name"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <asp:Label ID="lblEmpName" runat="server" Text=""></asp:Label>
                                </td>
                                <td class="infocells">
                                    <asp:Label ID="Label6" runat="server" Text="Creation Date"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <asp:Label ID="lblCreationDate" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="infocells">
                                    <asp:Label ID="Label3" runat="server" Text="Position"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <igtxt:WebTextEdit ID="wtePosition" runat="server" EnableAppStyling="True">
                                    </igtxt:WebTextEdit>
                                </td>
                                <td class="infocells">
                                    <asp:Label ID="Label36" runat="server" Text="Reviewed Date"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <asp:Label ID="lblReviewedDate" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="infocells">
                                    <asp:Label ID="Label4" runat="server" Text="Team"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <igtxt:WebTextEdit ID="wteTeam" runat="server" EnableAppStyling="True">
                                    </igtxt:WebTextEdit>
                                </td>
                                <td class="infocells">
                                    <asp:Label ID="Label35" runat="server" Text="Completed Date"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <asp:Label ID="lblCompletedDate" runat="server" Text=""></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="infocells">
                                    <asp:Label ID="Label5" runat="server" Text="Years Employed"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <igtxt:WebNumericEdit ID="wneYearsEmployed" runat="server" EnableAppStyling="True">
                                    </igtxt:WebNumericEdit>
                                </td>
                                <td class="infocells">
                                    <asp:Label ID="Label38" runat="server" Text="Closed Date"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <asp:Label ID="lblClosedDate" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="infocells">
                                    <asp:Label ID="Label39" runat="server" Text="Review Status"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <asp:DropDownList ID="ddlStatus" runat="server">
                                        <asp:ListItem Value="0">Draft</asp:ListItem>
                                        <asp:ListItem Value="1">Completed</asp:ListItem>
                                        <asp:ListItem Value="2">Reviewed</asp:ListItem>
                                        <asp:ListItem Value="3">Closed</asp:ListItem>
                                    </asp:DropDownList>
                                </td>
                                <td class="infocells">
                                    <asp:Label ID="Label87" runat="server" Text="Review Year"></asp:Label>
                                </td>
                                <td class="hdrdatacells">
                                    <igtxt:WebNumericEdit ID="wneReviewYear" runat="server" DataMode="Int" EnableAppStyling="True"
                                        MaxLength="4" MaxValue="2020" MinValue="2000" ToolTip="yyyy" ValueText="2008"
                                        Width="60px">
                                    </igtxt:WebNumericEdit>
                                </td>
                            </tr>
                        </table>
                    </div>
                </div>
                <div id="reviewdata" visible="false" style="width: 100%" runat="server">
                    <table cellpadding="0" cellspacing="0" border="0" rules="none" style="width: 100%">
                        <tr>
                            <td class="hdrcells">
                                 
                            </td>
                            <td class="hdrcells">
                                <asp:Label ID="Label7" runat="server" Text="Consistently does not meet expectations"
                                    Width="120px"></asp:Label>
                            </td>
                            <td class="hdrcells">
                                <asp:Label ID="Label8" runat="server" Text="At times, does not meet expectations"></asp:Label>
                            </td>
                            <td class="hdrcells">
                                <asp:Label ID="Label9" runat="server" Text="Meets expectations"></asp:Label>
                            </td>
                            <td class="hdrcells">
                                <asp:Label ID="Label10" runat="server" Text="At times, exceeds expectations"></asp:Label>
                            </td>
                            <td class="hdrcells">
                                <asp:Label ID="Label11" runat="server" Text="Consistently exceeds expectations"></asp:Label>
                            </td>
                        </tr>
                        <tr id="pAttendance" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label12" runat="server" Text="Attendance" Font-Bold="true" /><br />
                                <asp:Label ID="Label13" runat="server" Text="Reliability, Punctuality"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsAttendance" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled" ForeColor="Black">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sAttendance" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label1" runat="server" Text="Attendance" Font-Bold="true" /><br />
                                <asp:Label ID="Label40" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsAttendancex" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx"
                                        ForeColor="Black">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jAttendance" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label41" runat="server" Text="Attendance" Font-Bold="true" /><br />
                                <asp:Label ID="Label42" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsAttendancey" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pCharacter" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label14" runat="server" Text="Character" Font-Bold="True" /><br />
                                <asp:Label ID="Label15" runat="server" Text="Initiative; temperament; responsible; integrity "></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsCharacter" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled" CssClass="webpanel">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sCharacter" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label43" runat="server" Text="Character" Font-Bold="True" /><br />
                                <asp:Label ID="Label44" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsCharacterx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jCharacter" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label45" runat="server" Text="Character" Font-Bold="True" /><br />
                                <asp:Label ID="Label46" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsCharactery" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pJudgement" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label16" runat="server" Text="Judgement/Decision Making" Font-Bold="True" /><br />
                                <asp:Label ID="Label17" runat="server" Text="Consistent; effective; thoughtful "></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsJudgement" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sJudgement" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label47" runat="server" Text="Judgement/Decision Making" Font-Bold="True" /><br />
                                <asp:Label ID="Label48" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsJudgementx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jJudgement" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label49" runat="server" Text="Judgement/Decision Making" Font-Bold="True" /><br />
                                <asp:Label ID="Label50" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsJudgementy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pCommunication" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label18" runat="server" Text="Oral/Written Communication" Font-Bold="True" /><br />
                                <asp:Label ID="Label19" runat="server" Text="Understandable; organized; clear; concise; accurate"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsCommunication" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sCommunication" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label51" runat="server" Text="Oral/Written Communication" Font-Bold="True" /><br />
                                <asp:Label ID="Label52" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsCommunicationx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jCommunication" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label53" runat="server" Text="Oral/Written Communication" Font-Bold="True" /><br />
                                <asp:Label ID="Label54" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsCommunicationy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pOrganization" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label20" runat="server" Text="Organization" Font-Bold="True" /><br />
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsOrganization" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sOrganization" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label56" runat="server" Text="Organization" Font-Bold="True" /><br />
                                <asp:Label ID="Label57" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsOrganizationx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jOrganization" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label55" runat="server" Text="Organization" Font-Bold="True" /><br />
                                <asp:Label ID="Label58" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsOrganizationy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pQuality" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label21" runat="server" Text="Quality of Work" Font-Bold="True" /><br />
                                <asp:Label ID="Label22" runat="server" Text="Accuracy; client satisfaction"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsQuality" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sQuality" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label59" runat="server" Text="Quality of Work" Font-Bold="True" /><br />
                                <asp:Label ID="Label60" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsQualityx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jQuality" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label61" runat="server" Text="Quality of Work" Font-Bold="True" /><br />
                                <asp:Label ID="Label62" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsQualityy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pKnowledge" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label23" runat="server" Text="Job Knowledge" Font-Bold="True" /><br />
                                <asp:Label ID="Label24" runat="server" Text="Depth and understanding"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsKnowledge" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sKnowledge" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label63" runat="server" Text="Job Knowledge" Font-Bold="True" /><br />
                                <asp:Label ID="Label64" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsKnowledgex" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jKnowledge" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label65" runat="server" Text="Job Knowledge" Font-Bold="True" /><br />
                                <asp:Label ID="Label66" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsKnowledgey" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pDuties" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label25" runat="server" Text="Performance of Responsibilities" Font-Bold="True" /><br />
                                <asp:Label ID="Label26" runat="server" Text="Execution; supervision requirements"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsDuties" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sDuties" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label67" runat="server" Text="Performance of Responsibilities" Font-Bold="True" /><br />
                                <asp:Label ID="Label68" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsDutiesx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jDuties" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label69" runat="server" Text="Performance of Responsibilities" Font-Bold="True" /><br />
                                <asp:Label ID="Label70" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsDutiesy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pImprovement" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label27" runat="server" Text="Process Improvement" Font-Bold="True" /><br />
                                <asp:Label ID="Label28" runat="server" Text="Initiative; innovation; creative solutions"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsImprovement" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sImprovement" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label71" runat="server" Text="Process Improvement" Font-Bold="True" /><br />
                                <asp:Label ID="Label72" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsImprovementx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jImprovement" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label73" runat="server" Text="Process Improvement" Font-Bold="True" /><br />
                                <asp:Label ID="Label74" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsImprovementy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pManagement" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label29" runat="server" Text="Management" Font-Bold="True" /><br />
                                <asp:Label ID="Label30" runat="server" Text="People; projects; budgets"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsManagement" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sManagement" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label75" runat="server" Text="Management" Font-Bold="True" /><br />
                                <asp:Label ID="Label76" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsManagementx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jManagement" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label77" runat="server" Text="Management" Font-Bold="True" /><br />
                                <asp:Label ID="Label78" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsManagementy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pLeadership" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label31" runat="server" Text="Leadership" Font-Bold="True" /><br />
                                <asp:Label ID="Label32" runat="server" Text="Setting examples; motivating others; developing others"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsLeadership" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sLeadership" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label79" runat="server" Text="Leadership" Font-Bold="True" /><br />
                                <asp:Label ID="Label80" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsLeadershipx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jLeadership" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label81" runat="server" Text="Leadership" Font-Bold="True" /><br />
                                <asp:Label ID="Label82" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsLeadershipy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="pGoals" visible="false" runat="server">
                            <td class="desccells">
                                <asp:Label ID="Label33" runat="server" Text="Goals" Font-Bold="True" /><br />
                                <asp:Label ID="Label34" runat="server" Text="Corporate; team; individual"></asp:Label>
                            </td>
                            <td class="datacells" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsGoals" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabled">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="sGoals" visible="false" runat="server">
                            <td class="desccellsx">
                                <asp:Label ID="Label83" runat="server" Text="Goals" Font-Bold="True" /><br />
                                <asp:Label ID="Label84" runat="server" Text="Supervisor Review"></asp:Label>
                            </td>
                            <td class="datacellsx" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsGoalsx" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledx">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                        <tr id="jGoals" visible="false" runat="server">
                            <td class="desccellsy">
                                <asp:Label ID="Label85" runat="server" Text="Goals" Font-Bold="True" /><br />
                                <asp:Label ID="Label86" runat="server" Text="Joint Review"></asp:Label>
                            </td>
                            <td class="datacellsy" colspan="5" width="900px">
                                <div style="margin-left: auto; margin-right: auto;">
                                    <cc1:WebSlider ID="wsGoalsy" runat="server" MaxValueAsString="4" MinValueAsString="0"
                                        ValueType="Byte" Width="740px" LargeChangeAsString="1" SmallChangeAsString="1"
                                        SnapToSmallChange="True" StyleSetName="Default" DisabledCssClass="disabledy">
                                        <Track DoubleClickAction="MoveToPoint" FillValueMode="MainValue">
                                        </Track>
                                        <Tickmarks LabelClickAction="MoveToLabel" NumberOfMajorTickmarks="5" NumberOfMinorTickmarks="0">
                                        </Tickmarks>
                                    </cc1:WebSlider>
                                </div>
                            </td>
                        </tr>
                    </table>
                    <table cellpadding="5" cellspacing="0" border="0" style="width: 100%">
                        <tr id="pastperformance" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel1" runat="server" StyleSetName="" Width="100%" EnableAppStyling="True"
                                    ExpandEffect="None">
                                    <Header Text="Discuss job performance over the past year." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPastPerformance" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="pastperformancex" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel8" runat="server" StyleSetName="" Width="100%" EnableAppStyling="True"
                                    ExpandEffect="None" BackColor="#A6FFA6" CssClass="webpanelx">
                                    <Header Text="Discuss job performance over the past year." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPastPerformancex" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="pastperformancey" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel15" runat="server" StyleSetName="" Width="100%" EnableAppStyling="True"
                                    ExpandEffect="None" BackColor="#FFF997" CssClass="webpanely">
                                    <Header Text="Discuss job performance over the past year." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPastPerformancey" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="pastcontributions" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel2" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True">
                                    <Header Text="Discuss contributions and shortcomings." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPastContributions" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="pastcontributionsx" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel9" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#A6FFA6">
                                    <Header Text="Discuss contributions and shortcomings." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPastContributionsx" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="pastcontributionsy" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel16" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#FFF997">
                                    <Header Text="Discuss contributions and shortcomings." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPastContributionsy" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentknowledge" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel3" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True">
                                    <Header Text="What knowledge about the current job is needed to help the 
employee to expand or develop further? Are there new skills needed to develop to 
help the employee be more successful in their current job?" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentKnowledge" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentknowledgex" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel10" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#A6FFA6">
                                    <Header Text="What knowledge about the current job is needed to help the 
employee to expand or develop further? Are there new skills needed to develop to 
help the employee be more successful in their current job?" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentKnowledgex" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentknowledgey" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel17" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#FFF997">
                                    <Header Text="What knowledge about the current job is needed to help the 
employee to expand or develop further? Are there new skills needed to develop to 
help the employee be more successful in their current job?" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentKnowledgey" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentlikes" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel4" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True">
                                    <Header Text="Discuss areas where improvement is needed." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentLikes" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentlikesx" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel11" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#A6FFA6">
                                    <Header Text="Discuss areas where improvement is needed." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentLikesx" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentlikesy" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel18" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#FFF997">
                                    <Header Text="Discuss areas where improvement is needed." ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentLikesy" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentdislikes" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel5" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True">
                                    <Header Text="What do you like or dislike about your job?" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentDislikes" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentdislikesx" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel12" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#A6FFA6">
                                    <Header Text="What do you like or dislike about your job?" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentDislikesx" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentdislikesy" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel19" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#FFF997">
                                    <Header Text="What do you like or dislike about your job?" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentDislikesy" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentsupport" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel6" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True">
                                    <Header Text="What additional support, training or knowledge is needed for employee to accomplish or improve the job?"
                                        ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentSupport" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentsupportx" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel13" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#A6FFA6">
                                    <Header Text="What additional support, training or knowledge is needed for employee to accomplish or improve the job?"
                                        ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentSupportx" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="presentsupporty" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel20" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#FFF997">
                                    <Header Text="What additional support, training or knowledge is needed for employee to accomplish or improve the job?"
                                        ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbPresentSupporty" runat="server" Rows="5" TextMode="MultiLine"
                                            Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="futuregoals" visible="false" runat="server">
                            <td class="webpanel">
                                <igmisc:WebPanel ID="WebPanel7" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True">
                                    <Header Text="Future Goals" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbFutureGoals" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="futuregoalsx" visible="false" runat="server">
                            <td class="webpanelx">
                                <igmisc:WebPanel ID="WebPanel14" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#A6FFA6">
                                    <Header Text="Future Goals" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbFutureGoalsx" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                        <tr id="futuregoalsy" visible="false" runat="server">
                            <td class="webpanely">
                                <igmisc:WebPanel ID="WebPanel21" runat="server" StyleSetName="" Width="100%" ExpandEffect="None"
                                    EnableAppStyling="True" BackColor="#FFF997">
                                    <Header Text="Future Goals" ExpandedAppearance-Styles-ForeColor="Black">
                                    </Header>
                                    <Template>
                                        <asp:TextBox ID="tbFutureGoalsy" runat="server" Rows="5" TextMode="MultiLine" Width="100%"></asp:TextBox>
                                    </Template>
                                </igmisc:WebPanel>
                            </td>
                        </tr>
                    </table>
                </div>
            </div>
            <eo:Dialog ID="dlgError" runat="server" Height="120px" Width="320px" AllowResize="True"
                ControlSkinID="None" HeaderHtml="Error" HeaderHtmlFormat="&lt;div style=&quot;padding-top:4px&quot;&gt;{0}&lt;/div&gt;"
                HeaderImageHeight="27" HeaderImageUrl="00020441" MinHeight="100" MinWidth="150"
                IconUrl="~/images/error16.png">
                <FooterTemplate>
                    <div style="background-color: #000000; text-align: center; vertical-align: middle;">
                        <asp:Button ID="btnOk" runat="server" OnClick="btnOk_Click" Text="OK" Width="60px" />
                    </div>
                </FooterTemplate>
                <HeaderStyleActive CssText="background-image:url(00020442);color:#444444;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;padding-bottom:7px;padding-left:8px;padding-right:0px;padding-top:0px;" />
                <BorderImages BottomBorder="00020409,00020429" BottomLeftCorner="00020408,00020428"
                    BottomRightCorner="00020410,00020430" LeftBorder="00020406,00020426" RightBorder="00020407,00020427"
                    TopBorder="00020402,00020422" TopLeftCorner="00020401,00020421" TopLeftCornerBottom="00020404,00020424"
                    TopRightCorner="00020403,00020423" TopRightCornerBottom="00020405,00020425" />
                <FooterStyleActive CssText="background-color:black;font-family:tahoma;font-size:8pt;padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
                <FooterStyleInactive CssText="background-color:black;" />
                <ContentTemplate>
                    <table style="width: 100%;">
                        <tr>
                            <td style="text-align: center; vertical-align: middle; width: 64px">
                                <img alt="" src="images/error64.png" />
                            </td>
                            <td style="vertical-align: top;">
                                <asp:Label ID="lblError" runat="server" Text="Label"></asp:Label>
                            </td>
                        </tr>
                    </table>
                </ContentTemplate>
                <ContentStyleActive CssText="background-color:#f0f0f0;font-family:tahoma;font-size:8pt;padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px" />
            </eo:Dialog>
        </ContentTemplate>
    </asp:UpdatePanel>
</asp:Content>
eo_support
Posted: Tuesday, February 3, 2009 10:54:07 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
No. Try to comment them out block by block (or simply by setting a server controls' Visible to false). Don't try to "spot" it. Trial and error will always get you there. You also need to check your master page.
Randy Blackmond
Posted: Tuesday, February 3, 2009 10:55:10 AM
Rank: Newbie
Groups: Member

Joined: 10/23/2008
Posts: 4
Ok, will do. Thanks.
Randy Blackmond
Posted: Tuesday, February 3, 2009 4:19:30 PM
Rank: Newbie
Groups: Member

Joined: 10/23/2008
Posts: 4
Still not sure what the problem was, but I completely removed the dialog and then added it back and it's working ok now.
eo_support
Posted: Tuesday, February 3, 2009 5:03:26 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
Magic does not just happen, there got to be something that has been changed. :) But anyway I am glad you got it working and thanks for the update!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.