This is a migrated thread and some comments may be shown as answers.

RadWindow AutoSize adding vertical space

7 Answers 383 Views
Window
This is a migrated thread and some comments may be shown as answers.
Lynn
Top achievements
Rank 2
Lynn asked on 12 Jun 2011, 02:44 AM
I am using a modal window with the AutoSize property set to "true" and it appears to be adding significant space at the bottom of the page.  How do I get the window to set its size according to the content?

I have attached a screen capture of the displayed window and the .aspx code to the entire page is below...

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="ListingVideos.aspx.vb" Inherits="ListingVideos" %>
<%@ Register Assembly="ASPNetFlashVideo.NET3" Namespace="ASPNetFlashVideo" TagPrefix="ASPNetFlashVideo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
        <style type="text/css">
            body {
                font-family: Arial, Helvetica, sans-serif;
                font-size: 12px;
                line-height: 25px;
                margin-top: 0px;
                margin-left: 0px;
            }
             
            .clear { clear:both;}
             
            html, body
            {
            }
             
            p
            {
                padding-top:16px;
            }
             
            a {
                color: #202020;
                outline: none;
            }
 
            a:hover
            {
                text-decoration: underline;
                color: blue;
            }
 
            a:visited
            {
                text-decoration: underline;
                color: Purple;
            }
             
            .xlink {
                display:inline-block;
                border-radius: 6px;
                -moz-border-radius: 6px;
                -webkit-border-radius: 6px;
                position: relative;
                padding: 4px 10px 4px 10px;
                background:url(images/link-tail.gif) left top repeat-x #232323;
                font-size: 12px;
                line-height:20px;
                color:#fff;
                text-decoration:none;
                font-weight:bold;
                margin:0 5px 0 6px;
            }
             
            .xlink:hover
            {
                background:url(images/link-tail-hover.gif) left top repeat-x #636363;
                text-decoration: none;
                color:#fff;
            }
         
            .smallpage
            {
                line-height: 16px;
                margin: 15px;
                padding: 8px;
                width: 500px;
                background-color: #ffffff;
                display:inline-block;
                border-radius: 6px;
                -moz-border-radius: 6px;
                -webkit-border-radius: 6px;
                text-decoration:none;
                box-shadow: rgb(64,64,64) 5px 5px 5px;
                border: 1px solid #808080;
            }
 
            .smallpagenoshadow
            {
                line-height: 16px;
                margin: 5px;
                padding: 5px;
                width: 500px;
                display:inline-block;
                text-decoration:none;
                font-family: Arial, Verdana, Helvetica, Sans-serif;
                font-size: 12px;
                font-weight: normal;
            }
         
            .xltextbold
            {
                font-family: Arial, Verdana, Helvetica, Sans-serif;
                font-size: 24px;
                font-weight: bold;
                vertical-align: top;
                color: Black;
            }
             
            .largetextbold
            {
                font-family: Arial, Verdana, Helvetica, Sans-serif;
                font-size: 18px;
                font-weight: bold;
                vertical-align: top;
                color: #7d9b04;
            }
        
            div.RadGrid .rgPager .rgAdvPart    
            {    
                display:none;       
            }
             
       </style>
        <script type="text/javascript">
            function GetRadWindow() {
                var oWindow = null;
                if (window.radWindow)
                    oWindow = window.RadWindow;
                //Will work in Moz in all cases, including clasic dialog
                else if (window.frameElement.radWindow)
                    oWindow = window.frameElement.radWindow;
                //IE (and Moz as well)
                return oWindow;
            } function CloseFormFromServer() {
                GetRadWindow().Close();
            }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
        <div class="smallpagenoshadow" style="width: 525px;" >
            <asp:Label ID="TopicHeading" CssClass="xltextbold" runat="server" Text="<% $GetLangString:Listings.VideosHeading %>" Visible="true"></asp:Label>
            <br />
            <br />
            <asp:Label ID="LocationLabel" CssClass="largetextbold" runat="server" Text="" ></asp:Label>
            <br /><br />
            <div>
                <asp:Table ID="Table1" runat="server">
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:ImageButton ID="VideoClip1" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" Enabled="false" />
 
                        </asp:TableCell>
                        <asp:TableCell>
                            <asp:ImageButton ID="VideoClip2" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" Enabled="false" />
 
                        </asp:TableCell>
                        <asp:TableCell>
                            <asp:Image ID="VideoClip3" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" />
                            <asp:ImageButton ID="ImageButton3" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" Enabled="false" />
 
                        </asp:TableCell>
                        <asp:TableCell>
                            <asp:Image ID="VideoClip4" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" />
                            <asp:ImageButton ID="ImageButton4" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" Enabled="false" />
 
                        </asp:TableCell>
                        <asp:TableCell>
                            <asp:Image ID="VideoClip5" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" />
                            <asp:ImageButton ID="ImageButton5" runat="server" BorderWidth="0px" Height="75px" Width="100px" ImageUrl="" Visible="false" Enabled="false" />
 
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell ColumnSpan="5" Height="3px" ><hr /></asp:TableCell>
                    </asp:TableRow>
                </asp:Table>
 
                <ASPNetFlashVideo:FlashVideo ID="FlashVideo1" runat="server" Width="515px">
                </ASPNetFlashVideo:FlashVideo>
                <br />
                <div class="dataentry_caption2">
                    <asp:LinkButton CssClass="xlink" ID="LinkButton2" TabIndex="1" Width="80px" runat="server" Text="<% $GetLangString:Listings.CloseButtonLabel %>" ></asp:LinkButton>
                    <asp:Label ID="InjectClose" runat="server" Text=""></asp:Label>
                </div>
            </div>
            This is text before the table
            <asp:Table ID="Table2" runat="server">
                    <asp:TableRow Height="5px" >
                        <asp:TableCell >
                            <asp:HiddenField ID="HiddenKeyValue" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoLink1" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoLink2" runat="server" />           
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoLink3" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoLink4" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoLink5" runat="server" />
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow Height="5px" >
                        <asp:TableCell >
                            <asp:Label ID="PageErrors" runat="server" Text=""></asp:Label>
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoSize1" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoSize2" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoSize3" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoSize4" runat="server" />
                        </asp:TableCell>
                        <asp:TableCell >
                            <asp:HiddenField ID="VideoSize5" runat="server" />
                        </asp:TableCell>
                    </asp:TableRow>
             </asp:Table>
             This is text after the table
        </div>
        This is text after the div
    </form>
    This is text after the form
</body>
</html>

Additionally, the code to open the window is shown here...

    <telerik:RadWindow ID="RadWindow7" runat="server" Behaviors="Close" OnClientClose="OnClientClose" Modal="true" 
        NavigateUrl="ListingVideos.aspx" Skin="Black" EnableShadow="true" Width="600px" AutoSize="true" >
    </telerik:RadWindow>
 
 
function ViewVideos() {
    var listing = document.getElementById("<% =HiddenKeyValue.ClientID %>").value;
    var oWnd = radopen("ListingVideos.aspx?k=" + listing, "RadWindow7");
}

I would the window to stop just below the "Close" button.  For the sake of clarity, I added the useless text lines at the bottom (like "This is text before the table ", "This is the text after the table", etc.) to see where all of the space was being added -- but the majority is after the actual page definition.  Is this the way the window is supposed to function or am I doing something wrong.

Note: The reason I am trying to use "AutoSize" is that I am dynamically changing the size of the Flash movie control dynamically depending upon the video the user has selected and an embedded size code.  This is all working fine.

I just need to eliminate the totally wasteful space being displayed at the bottom of the page.

Thanks in advance!

Lynn

7 Answers, 1 is accepted

Sort by
0
Accepted
Svetlina Anati
Telerik team
answered on 14 Jun 2011, 11:11 AM
Hi Lynn,

 Thank you for the provided code, we were able to reproduce the issue and it turned out to be a bug in RadWindow in this scenario under IE9 only. The bug is fixed and the fix will be available in the next internal build and in any later releases.

For the time being I prepared for you the following simple workaround as a temporary solution until you decide to upgrade:

<telerik:RadWindowManager runat="server" ID="RadWindowManager1">
      <Windows>
          <telerik:RadWindow ID="RadWindow7" runat="server" AutoSize="true" OnClientAutoSizeEnd="OnClientAutoSizeEnd">
          </telerik:RadWindow>
      </Windows>
  </telerik:RadWindowManager>
  <%--tried clearing all the properties, except for the autosize, of course. didn't make a difference.--%>
  <asp:Button ID="Button1" Text="open window" runat="server" OnClientClick="ViewVideos(); return false;" />
  <script type="text/javascript">
      function ViewVideos() {
          var listing = 123;
          var oWnd = radopen("Default.aspx?k=" + listing, "RadWindow7");
      }
      function OnClientClose() {
          return;
      }
      function OnClientAutoSizeEnd(sender) {
          if ($telerik.isIE9) {
              setTimeout(function () {
                  sender.set_height(sender.get_height());
              }, 0);
          }
      }
  </script>


I also updated your account with some telerik points for your kind cooperation.

I hope that my reply is detailed enough and helpful and for your convenience I also attached my test demo with the workaround implemented, let me know how it goes.

Kind regards,
Svetlina
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Lynn
Top achievements
Rank 2
answered on 14 Jun 2011, 08:31 PM
Svetlina,

You were correct, of course, this was occurring when running under IE9.  My apologies for not mentioning that.

The workaround is great!  Thank you so much for that.  I will wait for the real fix to come out, but this solves the problem exactly!  Thanks also for the points.  It is nice to work with a company like Telerik that produces such good products and comes up with interim solutions like this.

The RadWindow is a great tool and extremely flexible and powerful.  The autosize (now) works great in the specific example I sent you. When playing videos of differing sizes (width and height) the window actually resizes dynamically as different videos are selected during the same instance.

Thanks again and have a great rest of the week!

Lynn
0
Smartie
Top achievements
Rank 1
answered on 12 Jul 2011, 12:04 PM
Hey,

I am also getting a large gap at the bottom of the window when using auto size on the height in Chrome.

<html xmlns="http://www.w3.org/1999/xhtml"><head id="ctl00_Head1"><title>
    Reporting - Chart
</title><link media="only screen and (max-device-width: 480px)" href="../../Styles/Mobile.css" type="text/css" rel="Stylesheet"><link media="screen and (min-width: 481px)" href="../../Styles/Desktop.css" type="text/css" rel="Stylesheet"><link type="text/javascript" src="js/supersleight-min.js">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="../../Styles/Desktop.css" media="all" />
<![endif]-->
     
    <meta name="viewport" content="user-scalable=no, width=device-width"><style type="text/css">
    .theme_colour { background-color:#330033; }
    .Large_Button_Link img { background-color:#330033; }
    .Large_Button_Input { background-color:#330033; }
</style>
<link href="../../App_Themes/Default/Menu.css" type="text/css" rel="stylesheet"><link href="../../App_Themes/Default/Style.css" type="text/css" rel="stylesheet"><link href="../../App_Themes/Default/TabStrip.css" type="text/css" rel="stylesheet"><link id="ctl00_SelectionStyle" href="/Web/beta/WebResource.axd?d=qW0OZk8Gjqq2Vz5xfHKs3hoeV8Aq9e1caRkJ5SDow-Q9r0ICO0udZBXTKo3YkY2gKFnp5X92ufUoHLzUVvzrFYxgtgG_CN2fOlhS3KgyAf_udP6U0&t=634460686912253565" rel="stylesheet" type="text/css"><link href="/Web/beta/Telerik.Web.UI.WebResource.axd?compress=1&_TSM_CombinedScripts_=%3b%3bTelerik.Web.UI%2c+Version%3d2011.1.519.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a911e11b9-43a3-4153-a0e1-a8dd325e7573%3a45085116%3a27c5704c%3aed2942d4%3ac5d7b491%3a1c2121e%3ae24b8e95%3a8cee9284%3acb23ecce%3a92753c09%3a91f742eb%3aaac1aeb7%3ac73cf106%3a4d471440%3a169db17e" type="text/css" rel="stylesheet"></head>
<body>
     
    <form name="aspnetForm" method="post" action="criteria1.aspx" id="aspnetForm"><div id="RadWindowWrapper_ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05" class="RadWindow RadWindow_Default rwNormalWindow rwTransparentWindow" style="width: 426px; height: 512px; left: 427px; top: 213px; z-index: 3001; visibility: visible; position: absolute; " unselectable="on"><table cellspacing="0" cellpadding="0" class="rwTable" style="height: 512px; "><tbody><tr class="rwTitleRow"><td class="rwCorner rwTopLeft"> </td><td class="rwTitlebar" style="cursor: move; "><div class="rwTopResize"><!-- / --></div><table align="left" cellspacing="0" cellpadding="0" class="rwTitlebarControls"><tbody><tr><td style="width: 16px; "><a class="rwIcon"></a></td><td id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_title"><em unselectable="on" style="width: 378px; ">Please select your criteria</em></td><td nowrap="" style="white-space: nowrap; "><ul class="rwControlButtons"></ul></td></tr></tbody></table></td><td class="rwCorner rwTopRight"> </td></tr><tr class="rwContentRow"><td class="rwCorner rwBodyLeft"> </td><td class="rwWindowContent" valign="top"><div id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; height: 473px; width: 410px; overflow-x: auto; overflow-y: auto; ">
        <div style="background-color:red;"><div id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl00" style="display: block; ">
            <div style="width:400px;padding:5px;">
                <div>Company Reference Criteria</div><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl18" title="Add" src="/Web/beta/WebResource.axd?d=OvF0y1pYlqQDxKrEHXwumF_f2Gm_vrqNCFJhoWSdyAiqud2VuD8fX6OigpsGS6E75wafGG-IkWDyT-gbYZZkRIEFaPrE_74bmqB5GowN60M7DqqV0&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl18", "", true, "", "", false, false))" style="border-width:0px;padding-left:5px;float:right;"><span id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19_wrapper" class="RadInput RadInput_Default" style="white-space:normal;"><input type="text" size="20" id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19_text" name="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19_text" class="riTextBox riEnabled" style="width:361px;"><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl19" class="rdfd_" title="" style="visibility:hidden;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" type="text" value=""><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19_ClientState" type="hidden" autocomplete="off"></span>
            </div><div style="width:400px;padding:0px 5px 5px 5px;">
                <div>Selected Company Reference Criteria</div><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl04" title="Delete" src="/Web/beta/WebResource.axd?d=wfo1viw1foG2nrV48hoV6cQd89JUZ_YGbpgCdQ9Igs2_nwWNRDx1LRu1t0wSZj7hMtFXMrcZDQCu5tz4M8vRvM_eMrwr--jjcek-H1sB_MwHXKQG0&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl04", "", true, "", "", false, false))" style="border-width:0px;padding-left:5px;float:right;"><div id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl05" class="RadListBox RadListBox_Default RadListBoxScrollable" style="height:150px;width:366px;">
                    <div class="rlbGroup rlbGroupRight">
 
                    </div><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl05_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl05_ClientState" type="hidden" autocomplete="off" value="{"logEntries":[],"selectedIndices":[],"checkedIndices":[],"scrollPosition":0}">
                </div>
            </div><div style="padding:5px;background-color:#EBEBEB;margin-top:5px;margin-bottom:5px;">
                <h4>Additional Options</h4><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl07" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl07"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl07">Invert the above selections?</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl08" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl08"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl08">Is Blank</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl09" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl09"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl09">Is Not Blank</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl10" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl10"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl10">I would like the user to be prompted for this criteria.</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl11" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl11" checked="checked"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl11">When prompted this is mandatory.</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl12" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl12"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl12">Allow the user to access the advanced window when entering prompted data?</label>
            </div>
        </div><div style="text-align:center;padding:5px;">
            <div style="display:inline-block;"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl14" title="Save & Close" src="/Web/beta/WebResource.axd?d=wvpl0wUrMmtYjIRD4fzneT2IG7sPE5PRKXxP1_BzJIRCfiSwQ-buioxme4CaoHUp7m-PONpO1fIH4bOpzSB3y_7oAViKstPmWlO6pfmQqvGDMrs-aDEV2TxTz1Cny_ikJUBn9Q2&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl14", "", true, "", "", false, false))" style="border-width:0px;"><br><span>Save & Close</span></div><div style="display:inline-block; margin-left:50px;"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl16" title="Delete" src="/Web/beta/WebResource.axd?d=3AXc_Xgjw6q3Bpz2t4qD1WEmir1e0pMumjFMByMFERNPyrZUSF_07f_5tWjsD_2U--YSZiuyR5N79AodaM1y6R5lDQ3OoF7CD0rjyOGUFljSfhbN0&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl16", "", true, "", "", false, false))" style="border-width:0px;"><br><span>Delete</span></div>
        </div></div>
    </div></td><td class="rwCorner rwBodyRight"> </td></tr><tr class="rwStatusbarRow" style="display: none; "><td class="rwCorner rwBodyLeft"> </td><td class="rwStatusbar"><table align="left" cellspacing="0" cellpadding="0" style="width: 100%; "><tbody><tr><td style="width: 100%; "><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_status" readonly="" unselectable="on"><label for="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_status" style="display: none; ">status label</label></td><td style="width: 15px; "><div></div></td></tr></tbody></table></td><td class="rwCorner rwBodyRight"> </td></tr><tr class="rwFooterRow"><td class="rwCorner rwFooterLeft"> </td><td class="rwFooterCenter"> </td><td class="rwCorner rwFooterRight"> </td></tr></tbody></table></div>
<div>
<input type="hidden" name="ctl00_RadScriptManager1_TSM" id="ctl00_RadScriptManager1_TSM" value=";;System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35:en-US:1f68db6e-ab92-4c56-8744-13e09bf43565:ea597d4b:b25378d2;Telerik.Web.UI, Version=2011.1.519.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4:en-US:911e11b9-43a3-4153-a0e1-a8dd325e7573:16e4e7cd:ed16cbdc:f7645509:24ee1bba:e330518b:1e771326:c8618e41:f46195d3:aa288e2d:8e6f0d33:874f8ea2:19620875:490a9d4e:b7778d6c:2bef5fcc" tabindex="-1">
<input type="hidden" name="ctl00_RadStyleSheetManager1_TSSM" id="ctl00_RadStyleSheetManager1_TSSM" value=";Telerik.Web.UI, Version=2011.1.519.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4:en-US:911e11b9-43a3-4153-a0e1-a8dd325e7573:45085116:27c5704c:ed2942d4:c5d7b491:1c2121e:e24b8e95:8cee9284:cb23ecce:92753c09:91f742eb:aac1aeb7:c73cf106:4d471440:169db17e" tabindex="-1">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" tabindex="-1">
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" tabindex="-1">
<input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" tabindex="-1">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPaA8FDzhjZTBlYTIyNWYzMDgwMxgEBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WJQUOY3RsMDAkUmFkTWVudTEFFGN0bDAwJGRkbFF1aWNrU2VhcmNoBRpjdGwwMCRkZGxHZW5lcmljJENvbWJvQm94MQUSY3RsMDAkUmFkVGFiU3RyaXAxBRtjdGwwMCRib2R5JE9wdGlvbnMxJGJ0bkJhY2sFJGN0bDAwJGJvZHkkT3B0aW9uczEkYnRuUHJvZHVjZVJlcG9ydAUbY3RsMDAkYm9keSRPcHRpb25zMSRidG5OZXh0BR9jdGwwMCRib2R5JGN0bDAwJGJ0bkFkZENyaXRlcmlhBSRjdGwwMCRib2R5JGN0bDAwJGNieFNlY3VyaXR5T3ZlcnJpZGUFLWN0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbSRjdGwwNAU3Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtJGN0bDA2JENvbWJvQm94MQUtY3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtJGN0bDA1BT5jdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0kY3RsMDUkQyRjdGwxNiRMaXN0Qm94MQU7Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtJGN0bDA1JEMkY3RsMTYkY3RsMDMFRWN0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbSRjdGwwNSRDJGN0bDE2JFRyYW5zZmVyTGlzdEJveAU1Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtJGN0bDA1JEMkY3RsMDQFNWN0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbSRjdGwwNSRDJGN0bDA1BTVjdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0kY3RsMDUkQyRjdGwwNgU1Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtJGN0bDA1JEMkY3RsMDcFNWN0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbSRjdGwwNSRDJGN0bDA4BTVjdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0kY3RsMDUkQyRjdGwwOQU1Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtJGN0bDA1JEMkY3RsMTAFNWN0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbSRjdGwwNSRDJGN0bDEyBTVjdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0kY3RsMDUkQyRjdGwxNAU3Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtLlJlZmVyZW5jZSRjdGwwNAU3Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtLlJlZmVyZW5jZSRjdGwwNQU/Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtLlJlZmVyZW5jZSRjdGwwNSRDJGN0bDE4BT9jdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0uUmVmZXJlbmNlJGN0bDA1JEMkY3RsMDQFP2N0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbS5SZWZlcmVuY2UkY3RsMDUkQyRjdGwwNQU/Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtLlJlZmVyZW5jZSRjdGwwNSRDJGN0bDA3BT9jdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0uUmVmZXJlbmNlJGN0bDA1JEMkY3RsMDgFP2N0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbS5SZWZlcmVuY2UkY3RsMDUkQyRjdGwwOQU/Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtLlJlZmVyZW5jZSRjdGwwNSRDJGN0bDEwBT9jdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0uUmVmZXJlbmNlJGN0bDA1JEMkY3RsMTEFP2N0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbS5SZWZlcmVuY2UkY3RsMDUkQyRjdGwxMgU/Y3RsMDAkYm9keSRjdGwwMCRTZWxlY3Rpb24xX0NvbXBhbnlJdGVtLlJlZmVyZW5jZSRjdGwwNSRDJGN0bDE0BT9jdGwwMCRib2R5JGN0bDAwJFNlbGVjdGlvbjFfQ29tcGFueUl0ZW0uUmVmZXJlbmNlJGN0bDA1JEMkY3RsMTYFN2N0bDAwJGJvZHkkY3RsMDAkU2VsZWN0aW9uMV9Db21wYW55SXRlbSRjdGwwNiRDb21ib0JveDEPFCsAAmVlZAUaY3RsMDAkZGRsR2VuZXJpYyRDb21ib0JveDEPFCsAAmVlZAUUY3RsMDAkZGRsUXVpY2tTZWFyY2gPFCsAAgUIQWN0aXZpdHkFAjIxZA/OYg9r/ntKIoebTbUQgOWM3yYR" tabindex="-1">
</div>
 
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>
 
 
<script src="/Web/beta/WebResource.axd?d=aZ1tbvcdA26L1uzWa7k2hkqgZj16er8BblDh7qjWJUXml1FQyJf9wSRvEevL5jNc4LX2EMDNcw4nyReXaGB5BBrdW7o1&t=634400301510347179" type="text/javascript"></script>
 
 
<script src="/Web/beta/WebResource.axd?d=221DCB22cqSVC-gEjDn20A8oSlJ5SDcVXJgDwPlJmRaf8RbLxuPCzPCKHfkE7Msf2ceyZpxpzCveyZsPmHTFX2MIqNonwM3s_Lb4Ejrslh3JDS0K0&t=634460686912253565" type="text/javascript"></script>
<script src="/Web/beta/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a1f68db6e-ab92-4c56-8744-13e09bf43565%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%2c+Version%3d2011.1.519.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a911e11b9-43a3-4153-a0e1-a8dd325e7573%3a16e4e7cd%3aed16cbdc%3af7645509%3a24ee1bba%3ae330518b%3a1e771326%3ac8618e41%3af46195d3%3aaa288e2d%3a8e6f0d33%3a874f8ea2%3a19620875%3a490a9d4e%3ab7778d6c%3a2bef5fcc" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
//]]>
</script>
 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
 
        <script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$RadScriptManager1', 'aspnetForm', ['tctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl00','','tctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl00','','tctl00$ctl00$ddlGenericPanel','','tctl00$ctl00$body$Options1$RadAjaxManagerProxyPanel','','tctl00$RadAjaxManager1SU',''], ['ctl00$ddlQuickSearch','','ctl00$body$Options1$btnProduceReport',''], [], 90, 'ctl00');
//]]>
</script>
 
             
         
        <!-- 2011.1.519.40 --><div id="ctl00_RadAjaxManager1SU" style="display: none; ">
    <span id="ctl00_RadAjaxManager1" style="display:none;"></span>
</div>
         
        <div id="ctl00_DefaultLoadingPanel" class="RadAjax RadAjax_Default" style="display:none;">
    <div class="raDiv">
 
    </div><div class="raColor raTransp">
 
    </div>
</div>
         
        <div class="container">
            <div class="header">
                <table style="width:100%" cellpadding="5">
                    <tbody><tr>
                        <td rowspan="2" class="dbImage">
                            <img id="ctl00_RadBinaryImage1" title="eContrack Beta" src="../../Telerik.Web.UI.WebResource.axd?imgid=49e6487e33b94647bea6b17a8a0e678a&type=rbi" alt="You are logged into the eContrack Beta database" style="height:72px;width:359px;">
                        </td>
                        <td colspan="2" valign="top" class="toolbar">
                            <div id="ctl00_RadMenu1" class="RadMenu RadMenu_Default" style="float:right;padding-right:5px;z-index:2500">
    <ul class="rmRootGroup rmHorizontal">
        <li class="rmItem rmFirst"><a href="../../Home.aspx" class="rmLink rmRootLink" tabindex="-1"><span class="rmText">Home</span></a></li><li class="rmItem "><a href="../Reporting.aspx" class="rmLink rmRootLink" tabindex="-1"><span class="rmText">Reporting</span></a></li><li class="rmItem "><a href="../../Calendar/Calendar.aspx" class="rmLink rmRootLink" tabindex="-1"><span class="rmText">Calendar</span></a></li><li class="rmItem "><a href="#" class="rmLink rmRootLink" tabindex="-1"><span class="rmText rmExpandDown">Add</span></a><div class="rmSlide">
            <ul class="rmVertical rmGroup rmLevel1">
                <li class="rmItem rmFirst"><a href="../../Activity/View.aspx" title="Activity" class="rmLink" tabindex="-1"><span class="rmText">Activity</span></a></li><li class="rmItem "><a href="../../Address/View.aspx" title="Address" class="rmLink" tabindex="-1"><span class="rmText">Address</span></a></li><li class="rmItem "><a href="../../Approval/View.aspx" title="Approval" class="rmLink" tabindex="-1"><span class="rmText">Approval</span></a></li><li class="rmItem "><a href="../../Company/View.aspx" title="Company" class="rmLink" tabindex="-1"><span class="rmText">Company</span></a></li><li class="rmItem "><a href="../../Contact/View.aspx" title="Contact" class="rmLink" tabindex="-1"><span class="rmText">Contact</span></a></li><li class="rmItem "><a href="../../Estate/View.aspx" title="Estate" class="rmLink" tabindex="-1"><span class="rmText">Estate</span></a></li><li class="rmItem "><a href="../../Event/View.aspx" title="Event" class="rmLink" tabindex="-1"><span class="rmText">Event</span></a></li><li class="rmItem "><a href="../../Incident/View.aspx" title="Incident" class="rmLink" tabindex="-1"><span class="rmText">Incident</span></a></li><li class="rmItem "><a href="../../Invitation/View.aspx" title="Invitation" class="rmLink" tabindex="-1"><span class="rmText">Invitation</span></a></li><li class="rmItem "><a href="../../Package/View.aspx" title="Package" class="rmLink" tabindex="-1"><span class="rmText">Package</span></a></li><li class="rmItem "><a href="../../Project/View.aspx" title="Project" class="rmLink" tabindex="-1"><span class="rmText">Project</span></a></li><li class="rmItem "><a href="../../Quote/View.aspx" title="Quote" class="rmLink" tabindex="-1"><span class="rmText">Quote</span></a></li><li class="rmItem rmLast"><a href="../../Scorecard/Add.aspx" title="Scorecard" class="rmLink" tabindex="-1"><span class="rmText">Scorecard</span></a></li>
            </ul>
        </div></li><li class="rmItem "><a href="#" class="rmLink rmRootLink" tabindex="-1"><span class="rmText rmExpandDown">Search</span></a><div class="rmSlide">
            <ul class="rmVertical rmGroup rmLevel1">
                <li class="rmItem rmFirst"><a href="../../Activity/Search.aspx" title="Activity" class="rmLink" tabindex="-1"><span class="rmText">Activity</span></a></li><li class="rmItem "><a href="../../Address/Search.aspx" title="Address" class="rmLink" tabindex="-1"><span class="rmText">Address</span></a></li><li class="rmItem "><a href="../../Approval/Search.aspx" title="Approval" class="rmLink" tabindex="-1"><span class="rmText">Approval</span></a></li><li class="rmItem "><a href="../../Company/Search.aspx" title="Company" class="rmLink" tabindex="-1"><span class="rmText">Company</span></a></li><li class="rmItem "><a href="../../Contact/Search.aspx" title="Contact" class="rmLink" tabindex="-1"><span class="rmText">Contact</span></a></li><li class="rmItem "><a href="../../Estate/Search.aspx" title="Estate" class="rmLink" tabindex="-1"><span class="rmText">Estate</span></a></li><li class="rmItem "><a href="../../Event/Search.aspx" title="Event" class="rmLink" tabindex="-1"><span class="rmText">Event</span></a></li><li class="rmItem "><a href="../../Incident/Search.aspx" title="Incident" class="rmLink" tabindex="-1"><span class="rmText">Incident</span></a></li><li class="rmItem "><a href="../../Invitation/Search.aspx" title="Invitation" class="rmLink" tabindex="-1"><span class="rmText">Invitation</span></a></li><li class="rmItem "><a href="../../Package/Search.aspx" title="Package" class="rmLink" tabindex="-1"><span class="rmText">Package</span></a></li><li class="rmItem "><a href="../../Project/Search.aspx" title="Project" class="rmLink" tabindex="-1"><span class="rmText">Project</span></a></li><li class="rmItem "><a href="../../Quote/Search.aspx" title="Quote" class="rmLink" tabindex="-1"><span class="rmText">Quote</span></a></li><li class="rmItem rmLast"><a href="../../Scorecard/Search.aspx" title="Scorecard" class="rmLink" tabindex="-1"><span class="rmText">Scorecard</span></a></li>
            </ul>
        </div></li><li class="rmItem "><a href="../../Options/Site.aspx" class="rmLink rmRootLink" tabindex="-1"><span class="rmText">Options</span></a></li><li class="rmItem "><a href="../../Help/General.aspx" class="rmLink rmRootLink" target="_blank" tabindex="-1"><span class="rmText">Help</span></a></li><li class="rmItem rmLast"><a href="#" class="rmLink rmRootLink" tabindex="-1"><span class="rmText">Logout</span></a></li>
    </ul><input id="ctl00_RadMenu1_ClientState" name="ctl00_RadMenu1_ClientState" type="hidden" autocomplete="off" tabindex="-1">
</div>
                        </td>
                    </tr>
                    <tr>
                        <td style="white-space:nowrap;width:10%">
                            <label for="ctl00_ddlQuickSearch" id="ctl00_lblQuickSearch" class="theme_color quicklbl">Quick Search</label
                            <div id="ctl00_ddlQuickSearch" class="RadComboBox RadComboBox_Default" style="width:150px;white-space:normal;">
    <table summary="combobox" style="border-width:0;border-collapse:collapse;width:100%">
        <tbody><tr class="rcbReadOnly">
            <td style="width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ddlQuickSearch" type="text" class="rcbInput" id="ctl00_ddlQuickSearch_Input" value="Activity" readonly="readonly" title="Select item to perform quick search for" autocomplete="off" tabindex="-1"></td>
            <td class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ddlQuickSearch_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;" tabindex="-1">select</a></td>
        </tr>
    </tbody></table>
    <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ddlQuickSearch_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Default " style="display:none;"><div class="rcbScroll rcbWidth" style="width:100%;"><ul class="rcbList" style="list-style:none;margin:0;padding:0;zoom:1;"><li class="rcbItem ">Activity</li><li class="rcbItem ">Address</li><li class="rcbItem ">Approval</li><li class="rcbItem ">Company</li><li class="rcbItem ">Contact</li><li class="rcbItem ">Estate</li><li class="rcbItem ">Event</li><li class="rcbItem ">Incident</li><li class="rcbItem ">Invitation</li><li class="rcbItem ">Package</li><li class="rcbItem ">Project</li><li class="rcbItem ">Quote</li><li class="rcbItem ">Scorecard</li></ul></div></div></div><input id="ctl00_ddlQuickSearch_ClientState" name="ctl00_ddlQuickSearch_ClientState" type="hidden" autocomplete="off" value="{"logEntries":[],"value":"21","text":"Activity","enabled":true}" tabindex="-1">
</div>
                        </td>
                        <td>
                            <div id="ctl00_ctl00_ddlGenericPanel" style="display: block; ">
    <span id="ctl00_ddlGeneric" title="Select item to view" showactiveonly="true" style="display:inline-block;width:99%;"><div id="ctl00_ddlGeneric_ComboBox1" class="RadComboBox RadComboBox_Default" style="width:100%;white-space:normal;">
        <table summary="combobox" style="border-width:0;border-collapse:collapse;width:100%">
            <tbody><tr>
                <td style="width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ddlGeneric$ComboBox1" type="text" class="rcbInput" id="ctl00_ddlGeneric_ComboBox1_Input" value="" autocomplete="off" tabindex="-1"></td>
                <td class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ddlGeneric_ComboBox1_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;" tabindex="-1">select</a></td>
            </tr>
        </tbody></table>
        <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ddlGeneric_ComboBox1_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Default " style="display:none;"><div class="rcbScroll rcbWidth" style="width:100%;"></div></div></div><input id="ctl00_ddlGeneric_ComboBox1_ClientState" name="ctl00_ddlGeneric_ComboBox1_ClientState" type="hidden" autocomplete="off" value="{"logEntries":[],"value":"","text":"","enabled":true}" tabindex="-1">
    </div></span>
</div>
                        </td>
                    </tr>
                </tbody></table>
            </div>
             
            <div class="theme_colour">
                <div class="section_title">
                    <span id="ctl00_lblSectionTitle">Reporting - Chart</span>
                </div>
            </div>
 
            <div class="theme_colour">
                <div class="section_tabs">
                    <div id="ctl00_RadTabStrip1" class="RadTabStrip RadTabStrip_Vista RadTabStripTop_Vista" style="width:100%;">
    <div class="rtsLevel rtsLevel1">
        <ul class="rtsUL"><li class="rtsLI rtsFirst"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Data</span></span></span></a></li><li class="rtsLI"><a class="rtsLink rtsBefore" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Templates</span></span></span></a></li><li class="rtsLI"><a class="rtsLink rtsSelected" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Selection One</span></span></span></a></li><li class="rtsLI"><a class="rtsLink rtsAfter" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Compare To</span></span></span></a></li><li class="rtsLI"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Settings</span></span></span></a></li><li class="rtsLI"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Style</span></span></span></a></li><li class="rtsLI"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Title & Info</span></span></span></a></li><li class="rtsLI"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Save</span></span></span></a></li><li class="rtsLI"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Link</span></span></span></a></li><li class="rtsLI rtsLast"><a class="rtsLink" href="#" tabindex="-1"><span class="rtsOut"><span class="rtsIn"><span class="rtsTxt">Schedule</span></span></span></a></li></ul>
    </div><input id="ctl00_RadTabStrip1_ClientState" name="ctl00_RadTabStrip1_ClientState" type="hidden" autocomplete="off" value="{"selectedIndexes":["2"],"logEntries":[],"scrollState":{}}" tabindex="-1">
</div>
                </div>
            </div>
             
            <div class="content">
                <div id="confirmation" class="confirmation" style="display:none;"></div>
                 
 
    <div id="ctl00_ctl00_body_Options1_RadAjaxManagerProxyPanel" style="display: block; ">
 
</div>
 
<div style="float:right; padding-bottom:10px;">
    <table cellpadding="0" cellspacing="0" border="0">
        <tbody><tr>
            <td id="ctl00_body_Options1_cellBack" style="width:40px;text-align:center;padding-left:10px;"><input type="image" name="ctl00$body$Options1$btnBack" id="ctl00_body_Options1_btnBack" title="Previous Step" src="../../images/icons/32x32/shadow/nav_left_blue.png" alt="Previous Step" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$Options1$btnBack", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"><br>Back</td>
 
            <td style="width:40px;text-align:center;padding-left:10px;"><a id="ctl00_body_Options1_hplReports" title="Report Library" href="../Reporting.aspx" tabindex="-1"><img title="Report Library" src="../../images/icons/32x32/shadow/books_blue.png" alt="Report Library" style="border-width:0px;"></a><br>Library</td>
            <td style="width:40px;text-align:center;padding-left:10px;"><input type="image" name="ctl00$body$Options1$btnProduceReport" id="ctl00_body_Options1_btnProduceReport" title="Show Report" src="../../images/icons/32x32/shadow/chart_column.png" alt="Show Report" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$Options1$btnProduceReport", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"><br>Show</td>
            <td id="ctl00_body_Options1_cellNext" style="width:40px;text-align:center;padding-left:10px;"><input type="image" name="ctl00$body$Options1$btnNext" id="ctl00_body_Options1_btnNext" title="Next Step" src="../../images/icons/32x32/shadow/nav_right_blue.png" alt="Next Step" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$Options1$btnNext", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"><br>Next</td>
 
        </tr>
    </tbody></table>
</div>
 
     
 
     
        <div style="padding-bottom:10px;">
            <table border="0">
                <tbody><tr>
                    <td>I want to add criteria for: <select name="ctl00$body$ctl00$ddlClass" onchange="javascript:setTimeout('__doPostBack(\'ctl00$body$ctl00$ddlClass\',\'\')', 0)" id="ctl00_body_ctl00_ddlClass" tabindex="-1">
    <option selected="selected" value="ActivityItem">Activity</option>
    <option value="AddressItem">Address</option>
    <option value="ClubMembershipItem">Club Membership</option>
    <option value="CompanyItem">Company</option>
    <option value="ContactItem">Contact</option>
    <option value="EstateItem">Estate</option>
    <option value="PackageItem">Package</option>
    <option value="ProjectItem">Project</option>
    <option value="ScorecardItem">Scorecard</option>
    <option value="ScoreLinkItem">ScoreLink</option>
    <option value="ScoreItem">Score</option>
 
</select></td>
                    <td><select name="ctl00$body$ctl00$ddlProperty" id="ctl00_body_ctl00_ddlProperty" tabindex="-1">
    <option selected="selected" value="ActivityItem.ActionDate">Action Date</option>
    <option value="ActivityItem.IsActioned">Actioned</option>
    <option value="ActivityItem.ActualFinish">Finish Time</option>
    <option value="ActivityItem.IsTracking">Hide</option>
    <option value="ActivityItem.RecurAmount">Hide</option>
    <option value="ActivityItem.RecurPeriod">Hide</option>
    <option value="ActivityItem.ReminderDate">Hide</option>
    <option value="ActivityItem.Text0">Hide</option>
    <option value="ActivityItem.Priority">Priority</option>
    <option value="ActivityItem.Type">Activity Type</option>
    <option value="ActivityItem.Notes">Hide</option>
    <option value="ActivityItem.SalesPerson">Actioned By</option>
    <option value="ActivityItem.Text2">Activity Text 2</option>
    <option value="ActivityItem.Text1">ActivityText1</option>
    <option value="ActivityItem.ActualStart">Actual Start</option>
    <option value="ActivityItem.OriginalFinish">Original Finish</option>
    <option value="ActivityItem.OriginalStart">Original Start</option>
    <option value="ActivityItem.ScheduledFinish">Scheduled Finish</option>
    <option value="ActivityItem.ScheduledStart">Scheduled Start</option>
    <option value="ActivityItem.AddedBy">Added By</option>
    <option value="ActivityItem.DateAdded">Date Added</option>
    <option value="ActivityItem.DateUpdated">Date Updated</option>
    <option value="ActivityItem.Owner">Owner</option>
    <option value="ActivityItem.UpdatedBy">Updated By</option>
 
</select></td>
                    <td><input type="image" name="ctl00$body$ctl00$btnAddCriteria" id="ctl00_body_ctl00_btnAddCriteria" title="New" src="../../images/icons/24x24/plain/add2.png" alt="New" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$btnAddCriteria", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"></td>
                    <td>            </td>
                    <td><input id="ctl00_body_ctl00_cbxSecurityOverride" type="checkbox" name="ctl00$body$ctl00$cbxSecurityOverride" tabindex="-1"><label for="ctl00_body_ctl00_cbxSecurityOverride">Override Security</label></td>
                </tr>
            </tbody></table>    
        </div>
     
                                        
    <div>
     
        <span id="ctl00_body_ctl00_lblCriteria" class="txt_bold">Selected Criteria</span>
 
        <div style="padding-top:5px;">
            <div style="background-color:whiteSmoke;border:1px dotted #CFCFCF;padding:5px;margin-right:5px;margin-bottom:5px;vertical-align:middle;">
    <span style="float:right;"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl04" title="Advanced" src="/Web/beta/WebResource.axd?d=JsFIiDEXXBYHOAhw0G4AbOFgysvApUKM453DL5Xpd6kEkp2O9GKRw5j3uncUD4qP-HnIrFYVoI_s-w12L1HKUhBThprjumaNGSIl9DzYtVPVlRbc0&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem$ctl04", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"></span><span style="font-weight:bold;white-space:nowrap;">Company Company</span><div style="padding-top:3px;display:none;">
        <span style="display:inline-block;width:150px;"><div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1" class="RadComboBox RadComboBox_Default" style="width:100%;white-space:normal;">
            <table summary="combobox" style="border-width:0;border-collapse:collapse;width:100%">
                <tbody><tr>
                    <td style="width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$body$ctl00$Selection1_CompanyItem$ctl06$ComboBox1" type="text" class="rcbInput rcbEmptyMessage" id="ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1_Input" value="Enter name or reference" autocomplete="off" tabindex="-1"></td>
                    <td class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;" tabindex="-1">select</a></td>
                </tr>
            </tbody></table>
            <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Default " style="display:none;"><div class="rcbScroll rcbWidth" style="width:100%;"></div></div></div><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1_ClientState" type="hidden" autocomplete="off" value="{"logEntries":[],"value":"","text":"","enabled":true}" tabindex="-1">
        </div></span>
    </div><div><span style="display:;"><i>The user will be prompted for this <b>mandatory</b> criteria when the report is run.</i></span></div>
</div><div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05" style="display:none;">
    <div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C">
        <div style="background-color:red;"><div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl00" style="display: block; ">
            <div style="width:560px;padding:5px;">
                <span style="display:inline-block;height:324px;width:560px;"><table class="selection_table" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td colspan="2" class="selection_td_prompt"><span>Company Company Criteria</span></td><td colspan="2"> </td></tr><tr><td class="selection_td_txt"><span id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1_wrapper" class="RadInput RadInput_Default" style="white-space:normal;"><input value="Enter name or reference" type="text" size="20" id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1_text" name="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1_text" class="riTextBox riEmpty" style="width:100%;" tabindex="-1"><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl16$TextBox1" class="rdfd_" title="" style="visibility:hidden;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" type="text" value="" tabindex="-1"><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1_ClientState" type="hidden" value="{"enabled":true,"emptyMessage":"Enter name or reference"}" autocomplete="off" tabindex="-1"></span></td><td class="selection_td_button"><a title="Search" href="Javascript:onSearch('ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1','ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1','5','','4','','');" tabindex="-1"><img title="Search" src="/Web/beta/WebResource.axd?d=CgEDG52AoPiNtYcYLCL2-3JMjQjMKJ7l41LoxT9KdxldDKC4WHysFZnqj5HCsCabKbWq2gF1zhVcKgBoV4Iht44_CzhY5F_UHz_kRmsSmNcwbf_ssMdpvVSrP7ZfhDQF9TS-Xg2&t=634460686912253565" alt="" style="border-width:0px;"></a></td><td class="selection_td_prompt"><span>Selected Company Company Criteria</span></td><td class="selection_td_button"></td></tr><tr><td class="selection_td_list"><div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1" class="RadListBox RadListBox_Default RadListBoxScrollable" style="height:100%;width:100%;">
                    <div class="rlbGroup rlbGroupRight">
 
                    </div><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1_ClientState" type="hidden" autocomplete="off" value="{"logEntries":[],"selectedIndices":[],"checkedIndices":[],"scrollPosition":0}" tabindex="-1">
                </div></td><td class="selection_td_button"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl16$ctl03" title="Add" src="/Web/beta/WebResource.axd?d=OvF0y1pYlqQDxKrEHXwumF_f2Gm_vrqNCFJhoWSdyAiqud2VuD8fX6OigpsGS6E75wafGG-IkWDyT-gbYZZkRIEFaPrE_74bmqB5GowN60M7DqqV0&t=634460686912253565" onclick="onSelectionAdd('ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1','ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox');return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl16$ctl03", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"></td><td class="selection_td_list"><div id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox" class="RadListBox RadListBox_Default RadListBoxScrollable" style="height:100%;width:100%;">
                    <div class="rlbGroup rlbGroupRight">
 
                    </div><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox_ClientState" type="hidden" autocomplete="off" value="{"logEntries":[],"selectedIndices":[],"checkedIndices":[],"scrollPosition":0}" tabindex="-1">
                </div></td><td class="selection_td_button"><a href="Javascript:onSelectionRemove('ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox');" tabindex="-1"><img src="/Web/beta/WebResource.axd?d=wfo1viw1foG2nrV48hoV6cQd89JUZ_YGbpgCdQ9Igs2_nwWNRDx1LRu1t0wSZj7hMtFXMrcZDQCu5tz4M8vRvM_eMrwr--jjcek-H1sB_MwHXKQG0&t=634460686912253565" alt="" style="border-width:0px;"></a></td></tr></tbody></table></span>
            </div><div style="padding:5px;background-color:#EBEBEB;margin-top:5px;margin-bottom:5px;">
                <h4>Additional Options</h4><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl04" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl04" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl04">Use Users Company</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl05" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl05" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl05">Invert the above selections?</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl06" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl06" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl06">Is Blank</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl07" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl07" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl07">Is Not Blank</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl08" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl08" checked="checked" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl08">I would like the user to be prompted for this criteria.</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl09" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl09" checked="checked" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl09">When prompted this is mandatory.</label><br><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl10" type="checkbox" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl10" checked="checked" tabindex="-1"><label for="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl10">Allow the user to access the advanced window when entering prompted data?</label>
            </div>
        </div><div style="text-align:center;padding:5px;">
            <div style="display:inline-block;"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl12" title="Save & Close" src="/Web/beta/WebResource.axd?d=wvpl0wUrMmtYjIRD4fzneT2IG7sPE5PRKXxP1_BzJIRCfiSwQ-buioxme4CaoHUp7m-PONpO1fIH4bOpzSB3y_7oAViKstPmWlO6pfmQqvGDMrs-aDEV2TxTz1Cny_ikJUBn9Q2&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl12", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"><br><span>Save & Close</span></div><div style="display:inline-block; margin-left:50px;"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl14" title="Delete" src="/Web/beta/WebResource.axd?d=3AXc_Xgjw6q3Bpz2t4qD1WEmir1e0pMumjFMByMFERNPyrZUSF_07f_5tWjsD_2U--YSZiuyR5N79AodaM1y6R5lDQ3OoF7CD0rjyOGUFljSfhbN0&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl14", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"><br><span>Delete</span></div>
        </div></div>
    </div><input id="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem_ctl05_ClientState" type="hidden" autocomplete="off" tabindex="-1">
</div><div style="background-color:whiteSmoke;border:1px dotted #CFCFCF;padding:5px;margin-right:5px;margin-bottom:5px;vertical-align:middle;">
    <span style="float:right;"><input type="image" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl04" title="Advanced" src="/Web/beta/WebResource.axd?d=JsFIiDEXXBYHOAhw0G4AbOFgysvApUKM453DL5Xpd6kEkp2O9GKRw5j3uncUD4qP-HnIrFYVoI_s-w12L1HKUhBThprjumaNGSIl9DzYtVPVlRbc0&t=634460686912253565" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl04", "", true, "", "", false, false))" style="border-width:0px;" tabindex="-1"></span><span style="font-weight:bold;white-space:nowrap;">Company Reference</span><div style="padding-top:3px;display:none;">
        <span id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06_wrapper" class="RadInput RadInput_Default" style="white-space:normal;"><input type="text" size="20" id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06_text" name="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06_text" class="riTextBox riEnabled" style="width:150px;" tabindex="-1"><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06" name="ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl06" class="rdfd_" title="" style="visibility:hidden;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" type="text" value="" tabindex="-1"><input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06_ClientState" type="hidden" autocomplete="off" tabindex="-1"></span>
    </div><div><span style="display:;"></span></div>
</div><div id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05" style="display:none;">
    <input id="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_ClientState" name="ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_ClientState" type="hidden" autocomplete="off" tabindex="-1">
</div>
        </div>
 
    </div>
         
     
 
                <div style="clear:both;padding-bottom:10px"></div>
            </div>
 
            <div class="theme_colour">
                <div class="footer">Copyright © 2006 measure2improve - All rights reserved</div>
            </div>
 
        </div>
 
     
 
<script type="text/javascript">
//<![CDATA[
Telerik.Web.UI.RadListBox._preInitialize("ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1","0");Telerik.Web.UI.RadListBox._preInitialize("ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox","0");Telerik.Web.UI.RadListBox._preInitialize("ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl05","0");;(function() {
                        function loadHandler() {
                            var hf = $get('ctl00_RadStyleSheetManager1_TSSM');
                            if (!hf._RSSM_init) { hf._RSSM_init = true; hf.value = ''; }
                            hf.value += ';Telerik.Web.UI, Version=2011.1.519.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4:en-US:911e11b9-43a3-4153-a0e1-a8dd325e7573:45085116:27c5704c:ed2942d4:c5d7b491:1c2121e:e24b8e95:8cee9284:cb23ecce:92753c09:91f742eb:aac1aeb7:c73cf106:4d471440:169db17e';
                            Sys.Application.remove_load(loadHandler);
                        };
                        Sys.Application.add_load(loadHandler);
                    })();Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxManager, {"_updatePanels":"","ajaxSettings":[{InitControlID : "ctl00_ddlQuickSearch",UpdatedControls : [{ControlID:"ctl00_ddlGeneric",PanelID:""}]},{InitControlID : "ctl00_body_Options1_btnProduceReport",UpdatedControls : [{ControlID:"ctl00_body_Options1_RadAjaxManagerProxy",PanelID:""}]},{InitControlID : "ctl00_body_Options1_btnProduceReport2",UpdatedControls : [{ControlID:"ctl00_body_Options1_RadAjaxManagerProxy",PanelID:""}]}],"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"defaultLoadingPanelID":"ctl00_DefaultLoadingPanel","enableAJAX":true,"enableHistory":false,"links":[],"styles":[],"uniqueID":"ctl00$RadAjaxManager1","updatePanelsRenderMode":0}, null, null, $get("ctl00_RadAjaxManager1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxLoadingPanel, {"initialDelayTime":0,"isSticky":false,"minDisplayTime":0,"skin":"Default","transparency":0,"uniqueID":"ctl00$DefaultLoadingPanel","zIndex":90000}, null, null, $get("ctl00_DefaultLoadingPanel"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadMenu, {"_childListElementCssClass":null,"_postBackReference":"__doPostBack(\u0027ctl00$RadMenu1\u0027,\u0027arguments\u0027)","_skin":"Default","attributes":{},"clientStateFieldID":"ctl00_RadMenu1_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[{"navigateUrl":"~/Home.aspx"},{"navigateUrl":"~/Reporting/Reporting.aspx"},{"navigateUrl":"~/Calendar/Calendar.aspx"},{"items":[{"navigateUrl":"~/Activity/View.aspx"},{"navigateUrl":"~/Address/View.aspx"},{"navigateUrl":"~/Approval/View.aspx"},{"navigateUrl":"~/Company/View.aspx"},{"navigateUrl":"~/Contact/View.aspx"},{"navigateUrl":"~/Estate/View.aspx"},{"navigateUrl":"~/Event/View.aspx"},{"navigateUrl":"~/Incident/View.aspx"},{"navigateUrl":"~/Invitation/View.aspx"},{"navigateUrl":"~/Package/View.aspx"},{"navigateUrl":"~/Project/View.aspx"},{"navigateUrl":"~/Quote/View.aspx"},{"navigateUrl":"~/Scorecard/Add.aspx"}]},{"items":[{"navigateUrl":"~/Activity/Search.aspx"},{"navigateUrl":"~/Address/Search.aspx"},{"navigateUrl":"~/Approval/Search.aspx"},{"navigateUrl":"~/Company/Search.aspx"},{"navigateUrl":"~/Contact/Search.aspx"},{"navigateUrl":"~/Estate/Search.aspx"},{"navigateUrl":"~/Event/Search.aspx"},{"navigateUrl":"~/Incident/Search.aspx"},{"navigateUrl":"~/Invitation/Search.aspx"},{"navigateUrl":"~/Package/Search.aspx"},{"navigateUrl":"~/Project/Search.aspx"},{"navigateUrl":"~/Quote/Search.aspx"},{"navigateUrl":"~/Scorecard/Search.aspx"}]},{"navigateUrl":"~/Options/Site.aspx"},{"navigateUrl":"~/Help/General.aspx","target":"_blank"},{}]}, null, null, $get("ctl00_RadMenu1"));
});
 
WebForm_InitCallback();Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_postBackReference":"WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(\u0027ctl00$ddlQuickSearch\u0027, \u0027arguments\u0027, true, \u0027\u0027, \u0027\u0027, false, true))","_skin":"Default","_text":"Activity","_uniqueId":"ctl00$ddlQuickSearch","_value":"21","clientStateFieldID":"ctl00_ddlQuickSearch_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[{"value":"21","selected":true},{"value":"1"},{"value":"30"},{"value":"5"},{"value":"7"},{"value":"8"},{"value":"17"},{"value":"9"},{"value":"18"},{"value":"11"},{"value":"12"},{"value":"19"},{"value":"37"}],"selectedIndex":0}, null, null, $get("ctl00_ddlQuickSearch"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_postBackReference":"WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(\u0027ctl00$ddlGeneric$ComboBox1\u0027, \u0027arguments\u0027, true, \u0027\u0027, \u0027\u0027, false, true))","_skin":"Default","_uniqueId":"ctl00$ddlGeneric$ComboBox1","allowCustomText":true,"clientStateFieldID":"ctl00_ddlGeneric_ComboBox1_ClientState","collapseAnimation":"{\"duration\":450}","enableLoadOnDemand":true,"expandAnimation":"{\"duration\":450}","itemData":[],"markFirstMatch":true,"webServiceSettings":"{\"path\":\"BSL.Web.UI.SelectionDataHandler.ashx?method=21&type=&x=&y=&z=&\",\"method\":\"getData\",\"useHttpGet\":true}"}, {"onClientBlur":onComboBoxClientBlur}, null, $get("ctl00_ddlGeneric_ComboBox1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadTabStrip, {"_postBackReference":"WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(\u0027ctl00$RadTabStrip1\u0027, \u0027{0}\u0027, true, \u0027\u0027, \u0027\u0027, false, true))","_selectedIndex":2,"_skin":"Vista","clientStateFieldID":"ctl00_RadTabStrip1_ClientState","selectedIndexes":["2"],"tabData":[{"value":"~/reporting/wizardsteps/data.aspx"},{"value":"~/reporting/wizardsteps/templates.aspx"},{"value":"~/reporting/wizardsteps/criteria1.aspx"},{"value":"~/reporting/wizardsteps/compareto.aspx"},{"value":"~/reporting/wizardsteps/chartsettings.aspx"},{"value":"~/reporting/wizardsteps/chartstyle_style.aspx"},{"value":"~/reporting/wizardsteps/titleinfo.aspx"},{"value":"~/reporting/wizardsteps/save.aspx"},{"value":"~/reporting/wizardsteps/link.aspx"},{"value":"~/reporting/wizardsteps/schedule.aspx"}]}, null, null, $get("ctl00_RadTabStrip1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_skin":"Default","_uniqueId":"ctl00$body$ctl00$Selection1_CompanyItem$ctl06$ComboBox1","allowCustomText":true,"clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1_ClientState","collapseAnimation":"{\"duration\":450}","emptyMessage":"Enter name or reference","enableLoadOnDemand":true,"expandAnimation":"{\"duration\":450}","itemData":[],"markFirstMatch":true,"webServiceSettings":"{\"path\":\"BSL.Web.UI.SelectionDataHandler.ashx?method=5&type=&x=4&y=&z=&\",\"method\":\"getData\",\"useHttpGet\":true}"}, {"onClientBlur":onComboBoxClientBlur}, null, $get("ctl00_body_ctl00_Selection1_CompanyItem_ctl06_ComboBox1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadTextBox, {"_focused":false,"_postBackEventReferenceScript":"setTimeout(\"__doPostBack(\\\u0027ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl16$TextBox1\\\u0027,\\\u0027\\\u0027)\", 0)","_skin":"Default","clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1_ClientState","emptyMessage":"Enter name or reference","enabled":true,"styles":{HoveredStyle: ["width:100%;", "riTextBox riHover"],InvalidStyle: ["width:100%;", "riTextBox riError"],DisabledStyle: ["width:100%;", "riTextBox riDisabled"],FocusedStyle: ["width:100%;", "riTextBox riFocused"],EmptyMessageStyle: ["width:100%;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:100%;", "riTextBox riRead"],EnabledStyle: ["width:100%;", "riTextBox riEnabled"]}}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TextBox1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadListBox, {"_uniqueId":"ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl16$ListBox1","checkedIndices":[],"clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1_ClientState","itemData":[],"selectedIndices":[],"selectionMode":1}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_ListBox1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadListBox, {"_uniqueId":"ctl00$body$ctl00$Selection1_CompanyItem$ctl05$C$ctl16$TransferListBox","checkedIndices":[],"clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox_ClientState","itemData":[],"selectedIndices":[],"selectionMode":1}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem_ctl05_C_ctl16_TransferListBox"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadWindow, {"_dockMode":true,"autoSize":true,"behaviors":32,"clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem_ctl05_ClientState","formID":"aspnetForm","iconUrl":"","minimizeIconUrl":"","modal":true,"name":"ctl05","skin":"Default","title":"Please select your criteria","visibleStatusbar":false}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem_ctl05"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadTextBox, {"_focused":false,"_postBackEventReferenceScript":"setTimeout(\"__doPostBack(\\\u0027ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl06\\\u0027,\\\u0027\\\u0027)\", 0)","_skin":"Default","clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06_ClientState","enabled":true,"styles":{HoveredStyle: ["width:150px;", "riTextBox riHover"],InvalidStyle: ["width:150px;", "riTextBox riError"],DisabledStyle: ["width:150px;", "riTextBox riDisabled"],FocusedStyle: ["width:150px;", "riTextBox riFocused"],EmptyMessageStyle: ["width:150px;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:150px;", "riTextBox riRead"],EnabledStyle: ["width:150px;", "riTextBox riEnabled"]}}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl06"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadTextBox, {"_focused":false,"_postBackEventReferenceScript":"setTimeout(\"__doPostBack(\\\u0027ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl19\\\u0027,\\\u0027\\\u0027)\", 0)","_skin":"Default","clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19_ClientState","enabled":true,"styles":{HoveredStyle: ["width:361px;", "riTextBox riHover"],InvalidStyle: ["width:361px;", "riTextBox riError"],DisabledStyle: ["width:361px;", "riTextBox riDisabled"],FocusedStyle: ["width:361px;", "riTextBox riFocused"],EmptyMessageStyle: ["width:361px;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:361px;", "riTextBox riRead"],EnabledStyle: ["width:361px;", "riTextBox riEnabled"]}}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl19"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadListBox, {"_uniqueId":"ctl00$body$ctl00$Selection1_CompanyItem.Reference$ctl05$C$ctl05","checkedIndices":[],"clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl05_ClientState","itemData":[],"selectedIndices":[],"selectionMode":1}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_C_ctl05"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadWindow, {"_dockMode":true,"autoSize":true,"behaviors":32,"clientStateFieldID":"ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05_ClientState","formID":"aspnetForm","iconUrl":"","minimizeIconUrl":"","modal":true,"name":"ctl05","skin":"Default","title":"Please select your criteria","visibleOnPageLoad":true,"visibleStatusbar":false}, null, null, $get("ctl00_body_ctl00_Selection1_CompanyItem.Reference_ctl05"));
});
//]]>
</script>
<div style="position: absolute; left: 0px; top: 0px; background-color: rgb(170, 170, 170); opacity: 0.5; z-index: 3000; width: 1280px; height: 939px; " unselectable="on" class="TelerikModalOverlay"></div></form>
 
 
</body></html>
0
Marin Bratanov
Telerik team
answered on 13 Jul 2011, 09:49 AM
Hi Leah,


The AutoSize functionality requires that the content in the RadWindow has explicitly set dimensions in order to function correctly. Please make sure that you have provided them, and that they are in pixels, as percents could not work in such a scenario. For example this would be a valid content:
<telerik:RadWindow runat="server" ID="RadWindow1" AutoSize="true">
    <ContentTemplate>
        <div style="width: 400px; height: 500px; background-color:Yellow;">
             some other content
        </div>
    </ContentTemplate>
</telerik:RadWindow>

If you are still experiencing difficulties please prepare and send us a simple page that isolates your behavior and send it back to us so we can examine your code and see what is happening.

Kind regards,
Marin
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Smartie
Top achievements
Rank 1
answered on 14 Jul 2011, 01:49 PM
Thanks for the reply.

I was using the auto size as I didn't know how high the content was. If I have to set the height of my controls within the window then I'll know how big the window would have to be, so kinda removes the point of the auto size on the height don't you think?
0
Marin Bratanov
Telerik team
answered on 14 Jul 2011, 03:08 PM
Hi Leah,

The Autosize functionality is designed to make the RadWindow wrap the content without the developer having to do the calculations himself/herself.

Please note that there is another method of using it - by explicitly calling the RadWIndow's autoSize(true) method, as shown in the following online demo: http://demos.telerik.com/aspnet-ajax/window/examples/autosize/defaultcs.aspx. This allows you do modify the content and then let the RadWindow resize itself around it.


All the best,
Marin
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Smartie
Top achievements
Rank 1
answered on 18 Jul 2011, 04:08 PM
I managed to get the height sizing working my making sure all the divs containing my controls had a fixed width.
Tags
Window
Asked by
Lynn
Top achievements
Rank 2
Answers by
Svetlina Anati
Telerik team
Lynn
Top achievements
Rank 2
Smartie
Top achievements
Rank 1
Marin Bratanov
Telerik team
Share this question
or