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

RadButton icon disappears after mouse over

31 Answers 772 Views
Button
This is a migrated thread and some comments may be shown as answers.
Gary Meagher
Top achievements
Rank 1
Gary Meagher asked on 15 Nov 2010, 11:23 PM
RadButton icon disappears after mouse over. Very strange behavior.
Just going over with the mouse cursor over the button will cause the icon to disappear.
I attached a before and after screenshots and here is a code snippet:
<telerik:RadButton ID="btnAdvancedLookup" runat="server" Text="Advanced Lookup" 
                     PostBackUrl="~/AdvancedLookup.aspx" AutoPostBack="true" >
                    <Icon PrimaryIconUrl="../Images/Buttons/Search.gif"/>
                    </telerik:RadButton>

31 Answers, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 16 Nov 2010, 08:45 AM
Hello Gary,

I have tested your code and just replaced your PrimaryIconUrl property with an icon on my machine ad it works fine in IE, Firefox, Safari. Could you please send us a small project or live url where the problem exists so we could be able to investigate it further?

Also, I see that you are using a search icon for your custom button. RadButton has a set of predefined icons that could be seen at: RadButton Embedded Icons

And a search icon could be added to the button:

<telerik:RadButton ID="RadButton29" runat="server" Text="Search">
                       <Icon PrimaryIconCssClass="rbSearch" PrimaryIconLeft="4" PrimaryIconTop="4" />
                   </telerik:RadButton>


All the best,
Bojo
the Telerik team
Browse the vast support resources we have to jumpstart 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
Gary Meagher
Top achievements
Rank 1
answered on 16 Nov 2010, 03:33 PM
When I use rbSearch the icon does not disappear after mouse over.
The problem is the background color is different and looks bad on your Windows7 Skin that I'm using.
attached a jpg


0
Gary Meagher
Top achievements
Rank 1
answered on 16 Nov 2010, 03:36 PM
1. On Firefox the rbSearch icon doesn't show a different background color, so the problem is only in IE.
2. On Firefox and IE I'm getting the icon disappearing issue.
0
Gary Meagher
Top achievements
Rank 1
answered on 16 Nov 2010, 04:08 PM
I cannot reproduce the icon disappear on a small scale project. (I tried)
It still happens on my full blown application.
My page has a lot of controls on it including PanelBars, RadGrids, User Controls etc.
Any suggestions?
0
Bozhidar
Telerik team
answered on 16 Nov 2010, 04:29 PM
Hello Gary,

I also could not reproduce the problem, if you can not send is a working project with the problem, could you send us a live url?

I have prepared a small project buttonicondisappear.zip trying to reproduce the issue but to no avail. Also I do not see any differences between Widnows7 in Firefox and IE 7 and higher. If you are testing with IE6, there could be problem with the icon, as the file is exported as PNG.

If you do not have a live url to send us, try to find the problem by switch on and off the Telerik controls to find if some of them causes the conflict. You could also use Firebug in Firefox to find the problem easier. Another option is to make a movie with the problem and to show us the CSS/HTMl of the rendered button with Firebug. You could use Jing Software for the movie, which has a free version, which allows you to make movies up to five minutes.

Best wishes,
Bojo
the Telerik team
Browse the vast support resources we have to jumpstart 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
Gary Meagher
Top achievements
Rank 1
answered on 16 Nov 2010, 04:43 PM
I'm spending a lot of time trying to figure out why the icons disappear from the RadButton on mouse over in IE.
I have another page with several buttons that doesn't have this problem.
The problem is with a specific web page. I'm attaching the code for this page. Can you please tell me if there is something about the structure of the page that might cause this issue. Thanks.

The problem is with btnAdvancedLookup


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using GRIT.DAL;
using GRIT.Objects;
using Telerik.Web.UI;
using System.Data;
 
public partial class ManageSubscriptions : RDSPage
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //UIMgr.VerifyPermissions(Page.User.Identity.Name, this.Context);
        LoadContent();
                 
        bool hasEquityHYPermissions = false;
        if (Session["HasEquityHYPermissions"] != null)
            bool.TryParse(Session["HasEquityHYPermissions"].ToString(), out hasEquityHYPermissions);
 
        btnRequestApproval.Visible = !hasEquityHYPermissions;
        imgRequestApproval.Visible = !hasEquityHYPermissions;
        lblRequestApproval.Visible = !hasEquityHYPermissions;
    }
 
    private void LoadContent()
    {
        try
        {
            Session["IsAudit"] = false; // clear is audit if we are no longer in the dashboard
 
            if (!Page.IsPostBack)
            {
                if (Session["Email"] != null)
                {
                    string email = Session["Email"].ToString();
                    LogMgr.Log("Manage subscriptions for " + email);
                    ClientRecord cr = SubscriptionMgr.GetClientRecordByEmail(email);
                    lblClientName.Text = cr.ClientName + "'s";
                    Session["ClientID"] = cr.ClientID;
                    Session["IsExternal"] = cr.IsExternal;
                    Session["HasEquityHYPermissions"] = PermissionsMgr.HasEquityHYPermissions(cr.ClientID);
                    long id = 0;
                    Session["EditMode"] = Request["EditMode"];
                    Session["Type"] = Request["Type"];
                    if (Session["Type"] != null)
                    {
                        SubsEntity type = (SubsEntity)Enum.Parse(typeof(SubsEntity), Session["Type"].ToString());
                        SetExpandCollapse(type);
                        if (Request["SubscriptionID"] != null && long.TryParse(Request["SubscriptionID"], out id))
                            SetSubscriptions(SubscriptionMgr.GetSubscription(id), type);
                    }
                    else
                    {
                        ClearSubscriptions();
                    }
                     
 
                    #region Handle Sponsors
                    LoadSponsors(cr);
                    #endregion
                }
            }
 
            if (Request["Collapse"] != null && bool.Parse(Request["Collapse"]))
            {
                CollapseAll();
            }
 
        }
        catch (Exception ex)
        {
            LogMgr.Log("Caught exception in Manage subscription page load. " + ex.Message);
            LogMgr.Log("Identity: " + Page.User.Identity.Name);
        }
    }
 
    private void LoadSponsors(ClientRecord cr)
    {
        LogMgr.Log("Before GetSponsorData Identity: " + Page.User.Identity.Name);
        SponsorStruct sponsorStruct = SponsorMgr.GetSponsorData(
            new SponsorArgs(cr.ClientID, cr.IsExternal, Page.User.Identity.Name));
        SponsorSelect1.LoadSponsors(sponsorStruct);
        LogMgr.Log("After GetSponsorData Identity: " + Page.User.Identity.Name);
    }
 
    private void VerifyPermissions()
    {
        throw new NotImplementedException();
    }
 
    private void CollapseAll()
    {
        foreach(RadPanelItem p in RadPanelBar1.Items)
            p.Expanded = false;
    }
     
    private void SetSubscriptions(Subscription subs, SubsEntity type)
    {
        ClearSubscriptions();
        switch (type)
        {
            case SubsEntity.Company:
                byCompany.SetSubscriptions(subs);
                break;
            case SubsEntity.Analyst:
                byAnalyst.SetSubscriptions(subs);
                break;
            case SubsEntity.Currency:
            case SubsEntity.Country:
                byCountryCurrency.SetSubscriptions(subs);
                break;
            case SubsEntity.Sector:
                bySector.SetSubscriptions(subs);
                break;
            case SubsEntity.ResearchProduct:
                byProduct.SetSubscriptions(subs);
                break;
        }
    }
    public UserControls_ByCompany byCompany
    {
        get { return RadPanelBar1.Items[0].Items[0].FindControl("ByCompany1") as UserControls_ByCompany; }
    }
    public UserControls_ByAnalyst byAnalyst
    {
        get { return RadPanelBar1.Items[1].Items[0].FindControl("ByAnalyst1") as UserControls_ByAnalyst; }
    }
    public UserControls_BySector bySector
    {
        get { return RadPanelBar1.Items[2].Items[0].FindControl("BySector1") as UserControls_BySector; }
    }
    public UserControls_ByCountryCurrency byCountryCurrency
    {
        get { return RadPanelBar1.Items[3].Items[0].FindControl("ByCountryCurrency1") as UserControls_ByCountryCurrency; }
    }
    public UserControls_ByProduct byProduct
    {
        get { return RadPanelBar1.Items[4].Items[0].FindControl("ByProduct1") as UserControls_ByProduct; }
    }
    private void ClearSubscriptions()
    {
        byCompany.ClearSubscriptions();
        byAnalyst.ClearSubscriptions();
        bySector.ClearSubscriptions();
        byCountryCurrency.ClearSubscriptions();
        byProduct.ClearSubscriptions();
    }
    private void SetExpandCollapse(SubsEntity type)
    {
        switch (type)
        {
            case SubsEntity.Company:
                RadPanelBar1.Items[0].Expanded = true;
                break;
            case SubsEntity.Analyst:
                RadPanelBar1.Items[1].Expanded = true;
                break;
            case SubsEntity.Sector:
                RadPanelBar1.Items[2].Expanded = true;
                break;
            case SubsEntity.Country:
            case SubsEntity.Currency:
                RadPanelBar1.Items[3].Expanded = true;
                break;
            case SubsEntity.RBCProduct:
            case SubsEntity.ResearchProduct:
                RadPanelBar1.Items[4].Expanded = true;
                break;
        }
    }
 
    protected void btnRequestApproval_Click(object sender, EventArgs e)
    {
        long clientID;
        if (Session["ClientID"] != null && long.TryParse(Session["ClientID"].ToString(), out clientID))
            ApprovalMgr.SendRequestForEquityHYApproval(clientID, User.Identity.Name);
        lblRequestApproval.Text = "Request for Equity & Non-Investment Grade Research was sent.";
        btnRequestApproval.Visible = false;
        imgRequestApproval.Visible = false;
    }
 
    protected void btnCancel_Click(object sender, EventArgs e)
    {
        Session["EditMode"] = false;
        if(Session["Email"]!=null)
            Response.Redirect("~/SubscriptionsDashboard.aspx?Email=" + Session["Email"].ToString());
    }
 
    protected void btnSave_Click(object sender, EventArgs e)
    {
        if (!byAnalyst.IsValid() || !byCompany.IsValid() ||
            !byCountryCurrency.IsValid() || !bySector.IsValid()) return;
 
        long clientID = 0;
        bool isExternal = true;
        string sponsorEmail = "";
        string sponsorName = "";
        long loggedInUserEmployeeNumber = -1;
 
        if (Session["ClientID"] != null)
            clientID = long.Parse(Session["ClientID"].ToString());
        if (Session["IsExternal"] != null)
            isExternal = bool.Parse(Session["IsExternal"].ToString());
         
        if (Session["LoggedInEmployeeNumber"] != null)
            loggedInUserEmployeeNumber = int.Parse(Session["LoggedInEmployeeNumber"].ToString());
         
        if (isExternal && Session["SelectedSponsorEmail"] == null)
        {
            lblMsg.Text = "Please select a sponsor";
            return;
        }
        else
            sponsorEmail = Session["SelectedSponsorEmail"] as string;
 
        sponsorName = Session["SelectedSponsorName"] as string;
 
        SaveTableArgs args = new SaveTableArgs()
        {
            ClientID = clientID,
            IsExternal = isExternal,
            LoggedInUserEmployeeNumber = loggedInUserEmployeeNumber,
            SponsorEmail = sponsorEmail,
            SponsorName = sponsorName
        };
 
        #region ByAnalyst Subscriptions
        args.SessionTableName = "ByAnalystDataTable";
        args.SubsEntity = SubsEntity.Analyst;
        SaveTable(args);
        #endregion
         
        #region ByCompany Subscriptions
        args.SessionTableName = "ByCompanyDataTable";
        args.SubsEntity = SubsEntity.Company;
        SaveTable(args);
        #endregion
 
        #region ByCountryCurrency Subscriptions
        args.SessionTableName = "ByCCDataTable";
        args.SubsEntity = SubsEntity.Country;
        SaveTable(args);
        #endregion
 
        #region BySector Subscriptions
        args.SessionTableName = "BySectorDataTable";
        args.SubsEntity = SubsEntity.Sector;
        SaveTable(args);
        #endregion
 
         #region ByProduct Subscriptions
        args.SessionTableName = "ByProductDataTable";
        args.SubsEntity = SubsEntity.ResearchProduct;
        SaveTable(args);
        #endregion
         
 
 
        Session["EditMode"] = false;
        if (Session["Email"] != null)
            Response.Redirect("~/SubscriptionsDashboard.aspx?Email=" + Session["Email"].ToString());
    }
 
    private void SaveTable(SaveTableArgs args)
    {
        if (this.Session[args.SessionTableName] != null)
        {
            (this.Session[args.SessionTableName] as DataTable).AcceptChanges();
            List<Subscription> subs = SubscriptionMgr.GetSubscription((this.Session[args.SessionTableName] as DataTable), args.SubsEntity, args.LoggedInUserEmployeeNumber);
            for (int i = 0; i < subs.Count; i++)
            {
                subs[i] = byCompany.SubsOptions.GetSubs(subs[i]);
                subs[i].SponsorEmail = args.SponsorEmail;
                subs[i].SponsorName = args.SponsorName;
                SubscriptionMgr.AddOrModifySubs(args.ClientID, args.IsExternal, subs[i], args.LoggedInUserEmployeeNumber);
            }
        }
    }
    private class SaveTableArgs
    {
        public string SessionTableName { get; set; }
        public long ClientID { get; set; }
        public bool IsExternal { get; set; }
        public string SponsorEmail { get; set; }
        public string SponsorName { get; set; }
        public long LoggedInUserEmployeeNumber { get; set; }
        public SubsEntity SubsEntity { get; set; }
    }
 
}
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master" CodeFile="ManageSubscriptions.aspx.cs" Inherits="ManageSubscriptions" %>
<%@ Register src="UserControls/HeaderControl.ascx" tagname="HeaderControl" tagprefix="uc1" %>
<%@ Register Assembly="Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
    Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<%@ Register src="UserControls/ByCompany.ascx" tagname="ByCompany" tagprefix="uc2" %>
 
<%@ Register src="UserControls/ByAnalyst.ascx" tagname="ByAnalyst" tagprefix="uc3" %>
 
<%@ Register src="UserControls/BySector.ascx" tagname="BySector" tagprefix="uc4" %>
 
<%@ Register src="UserControls/ByCountryCurrency.ascx" tagname="ByCountryCurrency" tagprefix="uc5" %>
 
<%@ Register src="UserControls/ByProduct.ascx" tagname="ByProduct" tagprefix="uc6" %>
 
<%@ Register src="UserControls/SponsorSelect.ascx" tagname="SponsorSelect" tagprefix="uc7" %>
 
<%@ Register src="UserControls/SubsPrefs.ascx" tagname="SubsPrefs" tagprefix="uc8" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
 
   <div style="padding-left:30px;padding-top:30px;padding-right:30px;">
    <table style="width: 900px">
        
        <tr>
            <td class="style1">
                <div class="header2" >
    <asp:Label ID="lblClientName" runat="server"/> Manage Subscriptions
    </div>
            </td>
            <td align="right" style="font-weight:bold;">
  
            </td>
        </tr>
      <tr><td colspan="3"> </td></tr>
       <tr>
            <td  >
                  Please choose Subscriptions Criteria
            </td>
            <td colspan="2">
                 
                <uc7:SponsorSelect ID="SponsorSelect1" runat="server" />
                 
            </td>
        </tr>
        <tr><td colspan="3">
            <uc8:SubsPrefs ID="SubsPrefs1" runat="server" />
            </td></tr>
       <tr>
       <td colspan="3" >
       <table cellpadding="1" cellspacing="1" ><tr><td valign="middle"><asp:Image ID="imgRequestApproval" runat="server" ImageUrl="Images/Buttons/Warning.gif" /></td>
       <td valign="middle"><asp:Label ID="lblRequestApproval" runat="server" >Please click the "Request" button for Equity and Non-Investment Grade subscriptions:</asp:Label></td>
        
       <td><asp:Button ID="btnRequestApproval" runat="server" Text="Request"
               onclick="btnRequestApproval_Click" />
               </td>
        </tr>
        </table>
           </td>
       </tr>
        </table>
        </div>
   <div style="position:relative;left:20px;top:-10px;" >
   
    <p>
         <telerik:RadPanelBar ID="RadPanelBar1" Runat="server" Skin="Windows7"
            Width="90%"  ExpandMode="SingleExpandedItem" AllowCollapseAllItems="true">
            <Items>
                <telerik:RadPanelItem runat="server" Text="Company" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg"  >
                <Items>
                    <telerik:RadPanelItem>
                    <ItemTemplate>
                         <uc2:ByCompany ID="ByCompany1" runat="server" />
                    </ItemTemplate>
                    </telerik:RadPanelItem>
                </Items>
                 
                </telerik:RadPanelItem >
                <telerik:RadPanelItem runat="server" Text="Analyst" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg">
                 <Items>
                    <telerik:RadPanelItem>
                    <ItemTemplate>
                    <uc3:ByAnalyst ID="ByAnalyst1" runat="server" />
               </ItemTemplate>
                    </telerik:RadPanelItem>
                </Items>
                 
                </telerik:RadPanelItem >
                <telerik:RadPanelItem runat="server" Text="Sector" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg">
                    <Items>
                    <telerik:RadPanelItem>
                    <ItemTemplate>
                        <uc4:BySector ID="BySector1" runat="server" />
                  </ItemTemplate>
                    </telerik:RadPanelItem>
                </Items>
                 
                </telerik:RadPanelItem >
                <telerik:RadPanelItem runat="server" Text="Country/Currency" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg">
                    <Items>
                    <telerik:RadPanelItem>
                    <ItemTemplate>
                        <uc5:ByCountryCurrency ID="ByCountryCurrency1" runat="server" />
                  </ItemTemplate>
                    </telerik:RadPanelItem>
                </Items>
                </telerik:RadPanelItem >
                 
                 <telerik:RadPanelItem runat="server" Text="Research Products" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg">
                    <Items>
                    <telerik:RadPanelItem>
                    <ItemTemplate>
                        <uc6:ByProduct ID="ByProduct1" runat="server" />
                  </ItemTemplate>
                    </telerik:RadPanelItem>
                </Items>
                 
                </telerik:RadPanelItem >
            </Items>
        </telerik:RadPanelBar>
 
   </p>
   <table cellpadding="3" cellspacing="3">
<tr><td colspan="2"><asp:Label ID="lblMsg" runat="server" ForeColor="#FF6600"></asp:Label></td></tr>
    <tr>
        <td colspan="2" align="center">
            <asp:Button ID="btnSave" runat="server" Text="Save" Width="100"
                onclick="btnSave_Click" />          
            <asp:Button ID="btnCancel" runat="server" Text="Cancel" Width="100"
                onclick="btnCancel_Click" />
            </td>
            <td colspan="2" align="center">
            </td>
    </tr>
</table>
    </div>
</asp:Content>
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register Assembly="Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
    Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!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>
    <link href="CSS/research.css" rel="stylesheet" type="text/css" />
    <link href="CSS/BorderStyle.css" rel="stylesheet" type="text/css" />
    <asp:ContentPlaceHolder id="head" runat="server">
     
    </asp:ContentPlaceHolder>
</head>
<body>
    <form id="form1" runat="server">
     
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server"
    Skin="Windows7" />
          <asp:Panel ID="pnlHeader" runat="server">
            <div style="width:100%;background-color:#02244A;">
            <img ID="Image1" runat="server" src="Images/RBC-Logo.jpg" />
            </div>
    
  
    
    <div style="color:White;position:absolute;top:20px;right:50px;">
          Research Central </div>
            <asp:Panel ID="pnlHome" CssClass="right1" runat="server" >
          <%--  <telerik:RadButton ID="btnHome" runat="server" Text="Home"
                      PostBackUrl="~/SearchUsers.aspx?Redirect=1" AutoPostBack="true" >
                     <Icon PrimaryIconUrl="Images/Buttons/Home.gif"/>
                     </telerik:RadButton>--%>
                     <table><tr><td valign="middle"><asp:ImageButton PostBackUrl="~/SearchUsers.aspx?Redirect=1" runat="server" ImageUrl="Images/Buttons/Home.gif" /></td><td valign="middle"><asp:LinkButton ID="Label3" runat="server" PostBackUrl="~/SearchUsers.aspx?Redirect=1" ForeColor="White" >Home</asp:LinkButton></td></tr></table>
                 <%-- --%>       </asp:Panel>
                 </asp:Panel>
            <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Windows7" Behaviors="Close, Close" KeepInScreenBounds="true"  ></telerik:RadWindowManager>
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadAjaxPanel1">
        <UpdatedControls>
        <telerik:AjaxUpdatedControl ControlID="RadAjaxPanel1" />
        </UpdatedControls>
        </telerik:AjaxSetting>
         
         <telerik:AjaxSetting AjaxControlID="grid">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="grid" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
                </AjaxSettings>
        </telerik:RadAjaxManager>
        <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
        </telerik:RadStyleSheetManager>
    <div>
        <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
         
        </asp:ContentPlaceHolder>
    </div>
    </form>
</body>
</html>
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ByCompany.ascx.cs" Inherits="UserControls_ByCompany" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
 
<%@ Register src="SubsOptions.ascx" tagname="SubsOptions" tagprefix="uc1"  %>
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script language="javascript">
    function OnClientItemsRequestingHandler(sender, eventArgs) {
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
    function OnClientDropDownOpening(sender, eventArgs) {
//        if (sender.get_items().get_count() == 0)
//            eventArgs.set_cancel(true);
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
//    function ShowAdvancedLookupForm() {
//        var ownd = window.radopen("AdvancedLookup.aspx", "AdvancedLookup");
//        ownd.setSize(1000, 800);
//        ownd.center();
//        ownd.OnClientClose = RefreshParentPage;
//        return false;
//    }
    function RefreshParentPage() {
        GetRadWindow().BrowserWindow.document.forms[0].submit();
    }
 
</script>
</telerik:RadCodeBlock>
 <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="200px" Width="300px">
 
<table cellpadding="7" cellspacing="7">
<tr>
<td>Enter Exchange Ticker or Company Name</td>
<td>
    <telerik:RadCombobox ID="cbxCompany" runat="server" EnableLoadOnDemand="True" Skin="Windows7"
         onitemsrequested="cbxCompany_ItemsRequested" Width="290px" Height="200px" onselectedindexchanged="cbxCompany_SelectedIndexChanged"
        AutoPostBack="True" OnClientItemsRequesting="OnClientItemsRequestingHandler" OnClientDropDownOpening="OnClientDropDownOpening" 
        >
         <HeaderTemplate>
                <table style="width: 237px" cellspacing="3" cellpadding="3">
                    <tr>
                         
                         <td style="width: 177px;">
                        Company</td>
                        <td style="width: 60px;">
                        Ticker</td>
                    </tr>
                </table>
            </HeaderTemplate>
            <ItemTemplate>
                <table style="width: 237px" cellspacing="0" cellpadding="0">
                    <tr>
                        <td style="width: 177px;">
                            <%# DataBinder.Eval(Container, "Text")%>
                        </td>
                         <td style="width: 60px;">
                            <%# DataBinder.Eval(Container, "Attributes['Ticker']")%>
                        </td>
                    </tr>
                </table>
            </ItemTemplate>
    </telerik:RadCombobox>
    
    </td>
<td>
</td>
<td>
<%--<asp:Button ID="btnAdvancedLookup" runat="server" Text="Advanced Look up" PostBackUrl="~/AdvancedLookup.aspx"></asp:Button>--%>
 <telerik:RadButton ID="btnAdvancedLookup" runat="server" Text="Advanced Lookup" 
                      PostBackUrl="~/AdvancedLookup.aspx" AutoPostBack="true" >
                     <Icon PrimaryIconUrl="../Images/Buttons/Search.gif"/>
                     </telerik:RadButton>
</td>
</tr>
<tr>
<td colspan="4">
    
    <telerik:radgrid ID="grid" runat="server" GridLines="None" Skin="Windows7"
            AutoGenerateColumns="false" Width="535px"
        onneeddatasource="grid_NeedDataSource" onitemcreated="grid_ItemCreated"
        ondeletecommand="grid_DeleteCommand">
            <HeaderContextMenu EnableAutoScroll="True">
            </HeaderContextMenu>
            <MasterTableView DataKeyNames="CompanyID">
                <RowIndicatorColumn>
                    <HeaderStyle Width="20px" />
                </RowIndicatorColumn>
                <ExpandCollapseColumn>
                    <HeaderStyle Width="20px" />
                </ExpandCollapseColumn>
                <Columns>
                <telerik:GridBoundColumn UniqueName="CompanyID" DataField="CompanyID" Visible="false">
               
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn HeaderText="Company Selected" UniqueName="CompanySelected" DataField="CompanySelected">
                <HeaderStyle Width="200px" />
                </telerik:GridBoundColumn>
                    <telerik:GridCheckBoxColumn HeaderText="Equity"   
                        UniqueName="Equity" DataField="EquityChecked" >
                        <HeaderStyle Width="65px" />
                    </telerik:GridCheckBoxColumn>
                    <telerik:GridCheckBoxColumn HeaderText="Investment Grade"
                        UniqueName="InvestmentGrade" DataField="InvestmentGradeChecked">
                        <HeaderStyle Width="112px" />
                    </telerik:GridCheckBoxColumn>
                    <telerik:GridCheckBoxColumn HeaderText="Non-Investment Grade" UniqueName="NonInvestmentGrade" DataField="NonInvestmentGradeChecked" >
                    <HeaderStyle Width="136px" />
                    </telerik:GridCheckBoxColumn>
                     <telerik:GridButtonColumn Text="Remove" CommandName="Delete" UniqueName="Remove"></telerik:GridButtonColumn>
                  
                </Columns>
                <NoRecordsTemplate>
                No records to display
            </NoRecordsTemplate>
            </MasterTableView>
        </telerik:radgrid>
     
    <asp:Label ID="lblMsg" runat="server" ForeColor="#FF6600"></asp:Label>
     
    </td>
</tr>
<tr>
<td colspan="4">
    <uc1:SubsOptions ID="SubsOptions1" runat="server" />
    </td>
</tr>
 
 
</table>
</telerik:RadAjaxPanel>
0
Gary Meagher
Top achievements
Rank 1
answered on 16 Nov 2010, 06:47 PM

Here is a movie that shows the behavior in IE6.

http://screencast.com/t/jYYnhqtnN3J

I'm showing the html source in the video and I'm also pasting it here:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head><title>
 
</title><link href="CSS/research.css" rel="stylesheet" type="text/css" /><link href="CSS/BorderStyle.css" rel="stylesheet" type="text/css" />
<link href="/DistributionSystem/Telerik.Web.UI.WebResource.axd?compress=1&_TSM_CombinedScripts_=%3b%3bTelerik.Web.UI%2c+Version%3d2010.3.1109.35%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a62e881c6-518e-447d-b6e7-1af83cb2d164%3aef4a543%3aa4012de0%3a92753c09%3a605d48d6%3a1c2121e%3affbf0211%3afe53831e%3abc8339f7%3a5951aeec%3af81bccde%3a9e1572d6%3a3f3482cd%3a4d471440%3a169db17e" type="text/css" rel="stylesheet" /></head>
<body>
    <form name="aspnetForm" method="post" action="ManageSubscriptions.aspx" id="aspnetForm">
<div>
<input type="hidden" name="ctl00_RadScriptManager1_TSM" id="ctl00_RadScriptManager1_TSM" value="" />
<input type="hidden" name="ctl00_RadStyleSheetManager1_TSSM" id="ctl00_RadStyleSheetManager1_TSSM" value="" />
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMjE0Mjg4NTg4NA9kFgJmD2QWAgIDD2QWBgIDDw9kFgIeBXN0eWxlBQ1kaXNwbGF5Om5vbmU7ZAIHDxQrAAIUKwADZGRkZGQCDQ9kFgQCAw9kFgICAg9kFgQCAQ8UKwACZGQWBGYPDxYEHghDc3NDbGFzcwUJcmNiSGVhZGVyHgRfIVNCAgJkZAIBDw8WBB8BBQlyY2JGb290ZXIfAgICZGQCAw88KwAEAGQCDQ8UKwACFCsAAmQQFgVmAgECAgIDAgQWBRQrAAJkEBYBZhYBFCsAAmRkDxYBZhYBBXVUZWxlcmlrLldlYi5VSS5SYWRQYW5lbEl0ZW0sIFRlbGVyaWsuV2ViLlVJLCBWZXJzaW9uPTIwMTAuMy4xMTA5LjM1LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTEyMWZhZTc4MTY1YmEzZDQUKwACZBAWAWYWARQrAAJkZA8WAWYWAQV1VGVsZXJpay5XZWIuVUkuUmFkUGFuZWxJdGVtLCBUZWxlcmlrLldlYi5VSSwgVmVyc2lvbj0yMDEwLjMuMTEwOS4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0FCsAAmQQFgFmFgEUKwACZGQPFgFmFgEFdVRlbGVyaWsuV2ViLlVJLlJhZFBhbmVsSXRlbSwgVGVsZXJpay5XZWIuVUksIFZlcnNpb249MjAxMC4zLjExMDkuMzUsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49MTIxZmFlNzgxNjViYTNkNBQrAAJkEBYBZhYBFCsAAmRkDxYBZhYBBXVUZWxlcmlrLldlYi5VSS5SYWRQYW5lbEl0ZW0sIFRlbGVyaWsuV2ViLlVJLCBWZXJzaW9uPTIwMTAuMy4xMTA5LjM1LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTEyMWZhZTc4MTY1YmEzZDQUKwACZBAWAWYWARQrAAJkZA8WAWYWAQV1VGVsZXJpay5XZWIuVUkuUmFkUGFuZWxJdGVtLCBUZWxlcmlrLldlYi5VSSwgVmVyc2lvbj0yMDEwLjMuMTEwOS4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0DxYFZmZmZmYWAQV1VGVsZXJpay5XZWIuVUkuUmFkUGFuZWxJdGVtLCBUZWxlcmlrLldlYi5VSSwgVmVyc2lvbj0yMDEwLjMuMTEwOS4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0ZBYKZg9kFgJmD2QWAgIBD2QWAgICD2QWCAIBDxQrAAJkZBYEZg8PFgQfAQUJcmNiSGVhZGVyHwICAmRkAgEPDxYEHwEFCXJjYkZvb3Rlch8CAgJkZAIDDzwrAAQAZAIFDzwrAA0CABQrAAIPFgIeC0VkaXRJbmRleGVzFgBkFwEFD1NlbGVjdGVkSW5kZXhlcxYAARYCFgoPAgYUKwAGPCsABQEEBQlDb21wYW55SUQ8KwAFAQQFD0NvbXBhbnlTZWxlY3RlZDwrAAUBBAUGRXF1aXR5PCsABQEEBQ9JbnZlc3RtZW50R3JhZGU8KwAFAQQFEk5vbkludmVzdG1lbnRHcmFkZTwrAAUBBAUGUmVtb3ZlZGUUKwAACyl6VGVsZXJpay5XZWIuVUkuR3JpZENoaWxkTG9hZE1vZGUsIFRlbGVyaWsuV2ViLlVJLCBWZXJzaW9uPTIwMTAuMy4xMTA5LjM1LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTEyMWZhZTc4MTY1YmEzZDQBPCsABwALKXVUZWxlcmlrLldlYi5VSS5HcmlkRWRpdE1vZGUsIFRlbGVyaWsuV2ViLlVJLCBWZXJzaW9uPTIwMTAuMy4xMTA5LjM1LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTEyMWZhZTc4MTY1YmEzZDQBZGRkZmQCBw8PFgIeBFRleHRlZGQCAQ9kFgJmD2QWAgIBD2QWAgICD2QWBgIBDxQrAAJkZBYEZg8PFgQfAQUJcmNiSGVhZGVyHwICAmRkAgEPDxYEHwEFCXJjYkZvb3Rlch8CAgJkZAIDDzwrAA0CABQrAAIPFgIfAxYAZBcBBQ9TZWxlY3RlZEluZGV4ZXMWAAEWAhYKDwIJFCsACTwrAAUBBAUJQW5hbHlzdElEPCsABQEEBQ9BbmFseXN0U2VsZWN0ZWQ8KwAFAQQFBkVxdWl0eTwrAAUBBAUPSW52ZXN0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aW5lPCsABQEEBQxMZXZlbDFTZWN0b3I8KwAFAQQFD0xldmVsMlN1YlNlY3RvcjwrAAUBBAUJVVNDaGVja2VkPCsABQEEBQ1DYW5hZGFDaGVja2VkPCsABQEEBRRJbnRlcm5hdGlvbmFsQ2hlY2tlZDwrAAUBBAUGUmVtb3ZlZGUUKwAACysEATwrAAcACysFAWRkZGZkAhEPZBYCAgEPZBYGAgEPDxYCHgdWaXNpYmxlaGRkAgMPEA8WAh8IaGRkZGQCBQ8QDxYCHwhoZGQWAGQYCgVCY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTIkaTAkQnlTZWN0b3IxJGNtYkluZHVzdHJ5DxQrAAJlZWQFM2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkU3BvbnNvclNlbGVjdDEkY21iU3BvbnNvcg8UKwACZWVkBUJjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMSRpMCRCeUFuYWx5c3QxJGNieEFuYWx5c3QPFCsAAmVlZAVEY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTQkaTAkQnlQcm9kdWN0MSRjbWJTdWJTZWN0b3IPFCsAAmVlZAVFY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTQkaTAkQnlQcm9kdWN0MSRjbWJEaXNjaXBsaW5lDxQrAAJlZWQFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYvBRdjdGwwMCRSYWRGb3JtRGVjb3JhdG9yMQULY3RsMDAkY3RsMDQFF2N0bDAwJFJhZFdpbmRvd01hbmFnZXIxBTNjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFNwb25zb3JTZWxlY3QxJGNtYlNwb25zb3IFMmN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkU3BvbnNvclNlbGVjdDEkYnRuTG9va3VwBSZjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMQVCY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTAkaTAkQnlDb21wYW55MSRjYnhDb21wYW55BUljdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMCRpMCRCeUNvbXBhbnkxJGJ0bkFkdmFuY2VkTG9va3VwBTxjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMCRpMCRCeUNvbXBhbnkxJGdyaWQFS2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkwJGkwJEJ5Q29tcGFueTEkU3Vic09wdGlvbnMxJGNoeEFsbAVUY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTAkaTAkQnlDb21wYW55MSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQwBVRjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMCRpMCRCeUNvbXBhbnkxJFN1YnNPcHRpb25zMSRDaGVja0JveExpc3QxJDEFVGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkwJGkwJEJ5Q29tcGFueTEkU3Vic09wdGlvbnMxJENoZWNrQm94TGlzdDEkMgVUY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTAkaTAkQnlDb21wYW55MSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQzBVRjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMCRpMCRCeUNvbXBhbnkxJFN1YnNPcHRpb25zMSRDaGVja0JveExpc3QxJDMFQmN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkxJGkwJEJ5QW5hbHlzdDEkY2J4QW5hbHlzdAU8Y3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTEkaTAkQnlBbmFseXN0MSRncmlkBUtjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMSRpMCRCeUFuYWx5c3QxJFN1YnNPcHRpb25zMSRjaHhBbGwFVGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkxJGkwJEJ5QW5hbHlzdDEkU3Vic09wdGlvbnMxJENoZWNrQm94TGlzdDEkMAVUY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTEkaTAkQnlBbmFseXN0MSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQxBVRjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMSRpMCRCeUFuYWx5c3QxJFN1YnNPcHRpb25zMSRDaGVja0JveExpc3QxJDIFVGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkxJGkwJEJ5QW5hbHlzdDEkU3Vic09wdGlvbnMxJENoZWNrQm94TGlzdDEkMwVUY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTEkaTAkQnlBbmFseXN0MSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQzBUBjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMiRpMCRCeVNlY3RvcjEkY21iU2VjdG9yBUJjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMiRpMCRCeVNlY3RvcjEkY21iSW5kdXN0cnkFO2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkyJGkwJEJ5U2VjdG9yMSRncmlkBUpjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMiRpMCRCeVNlY3RvcjEkU3Vic09wdGlvbnMxJGNoeEFsbAVTY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTIkaTAkQnlTZWN0b3IxJFN1YnNPcHRpb25zMSRDaGVja0JveExpc3QxJDAFU2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkyJGkwJEJ5U2VjdG9yMSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQxBVNjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMiRpMCRCeVNlY3RvcjEkU3Vic09wdGlvbnMxJENoZWNrQm94TGlzdDEkMgVTY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTIkaTAkQnlTZWN0b3IxJFN1YnNPcHRpb25zMSRDaGVja0JveExpc3QxJDMFU2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkyJGkwJEJ5U2VjdG9yMSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQzBUpjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMyRpMCRCeUNvdW50cnlDdXJyZW5jeTEkbGJDdXJyZW5jeQVJY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTMkaTAkQnlDb3VudHJ5Q3VycmVuY3kxJGxiQ291bnRyeQVIY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTMkaTAkQnlDb3VudHJ5Q3VycmVuY3kxJGJ0bk90aGVyBURjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMyRpMCRCeUNvdW50cnlDdXJyZW5jeTEkZ3JpZAVTY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTMkaTAkQnlDb3VudHJ5Q3VycmVuY3kxJFN1YnNPcHRpb25zMSRjaHhBbGwFXGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkzJGkwJEJ5Q291bnRyeUN1cnJlbmN5MSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQwBVxjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMyRpMCRCeUNvdW50cnlDdXJyZW5jeTEkU3Vic09wdGlvbnMxJENoZWNrQm94TGlzdDEkMQVcY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTMkaTAkQnlDb3VudHJ5Q3VycmVuY3kxJFN1YnNPcHRpb25zMSRDaGVja0JveExpc3QxJDIFXGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkzJGkwJEJ5Q291bnRyeUN1cnJlbmN5MSRTdWJzT3B0aW9uczEkQ2hlY2tCb3hMaXN0MSQzBVxjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMyRpMCRCeUNvdW50cnlDdXJyZW5jeTEkU3Vic09wdGlvbnMxJENoZWNrQm94TGlzdDEkMwVGY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTQkaTAkQnlQcm9kdWN0MSRjbWJDb250ZW50VHlwZQVFY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTQkaTAkQnlQcm9kdWN0MSRjbWJEaXNjaXBsaW5lBUFjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpNCRpMCRCeVByb2R1Y3QxJGNtYlNlY3RvcgVEY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTQkaTAkQnlQcm9kdWN0MSRjbWJTdWJTZWN0b3IFPGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGk0JGkwJEJ5UHJvZHVjdDEkZ3JpZAVGY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRSYWRQYW5lbEJhcjEkaTQkaTAkQnlQcm9kdWN0MSRjbWJDb250ZW50VHlwZQ8UKwACZWVkBUBjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJFJhZFBhbmVsQmFyMSRpMiRpMCRCeVNlY3RvcjEkY21iU2VjdG9yDxQrAAJlZWQFQWN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGk0JGkwJEJ5UHJvZHVjdDEkY21iU2VjdG9yDxQrAAJlZWQFQmN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmFkUGFuZWxCYXIxJGkwJGkwJEJ5Q29tcGFueTEkY2J4Q29tcGFueQ8UKwACZWVkitIV4mia/becVLnP1J6zcqQQiJo=" />
</div>
 
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>
 
 
<script src="/DistributionSystem/WebResource.axd?d=SYZWAlWg8QyPlHvQEvkY9Q2&t=634180262956533777" type="text/javascript"></script>
 
 
<script src="/DistributionSystem/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d3.5.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a3bbfe379-348b-450d-86a7-bb22e53c1978%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%2c+Version%3d2010.3.1109.35%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a62e881c6-518e-447d-b6e7-1af83cb2d164%3a16e4e7cd%3a86526ba7%3a874f8ea2%3af7645509%3a24ee1bba%3af46195d3%3a19620875%3a490a9d4e%3abd8f85e4%3aed16cbdc%3a1e771326%3aaa288e2d%3a7165f74%3a4cacbc31%3a58366029%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>
 
<div>
 
    <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="ck-67IeQvmpjAXlbdZlinhBXITUQ09WIT1FVdLIMqtc5OCd6zX0XMAG1f7hST4td0" />
    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWKAKSj/q4CwL7qYWMCgLIwcytAgKZyOOqBgK0p6LeCAKZyOOqBgL90+mSDALOrMLcAwK8wcuDDALOwoi8CAKFxujmDAKPh5K3BwLghKQbAs3r5e8OAuCEpBsCqOKbxgkCs7OOsQUCs7P61QwCs7Pm+gMCs7PSnwsC3ZOFXQLInrq2DALInqbbAwLInpKACwLInv6kAgK6loejCQL+jehXApn3he0KAsi7rK0MAuOkysIGArrQkfwCApe/0IgMArrQkfwCAtCp4K8EAqGBge0DAqGBlcgMAqGB2bYCAqGB7ZELAqiRot8KAobWoPQJ/dLVvt5WzoG9lO2jEwmh28Cg/84=" />
</div>
     
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$RadScriptManager1', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls(['tctl00$ctl00$ContentPlaceHolder1$SponsorSelect1$RadAjaxPanel1Panel','tctl00$ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$gridPanel','tctl00$ContentPlaceHolder1$SubsPrefs1$ctl00$ContentPlaceHolder1$SubsPrefs1$RadAjaxPanel1Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$ctl00Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$RadAjaxPanel1Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$ctl00Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$RadAjaxPanel1Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$ctl00Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$RadAjaxPanel1Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$ctl00Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$RadAjaxPanel1Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$SubsOptions1$ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$SubsOptions1$ctl00Panel','tctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$RadAjaxPanel1Panel','tctl00$RadAjaxManager1SU'], ['ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$grid'], ['ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$btnAdvancedLookup'], 90);
//]]>
</script>
   
    <div id="ctl00_RadFormDecorator1" style="display:none;">
    <!-- 2010.3.1109.35 --><script type="text/javascript">
//<![CDATA[
if (typeof(WebForm_AutoFocus) != 'undefined')
{
    var old_WebForm_AutoFocus = WebForm_AutoFocus;
    WebForm_AutoFocus = function(arg)
    {
        Sys.Application.add_load(function()
        {
            old_WebForm_AutoFocus(arg);
            WebForm_AutoFocus = old_WebForm_AutoFocus;
        });
    }
}
if (typeof(Telerik) != 'undefined')
{
    if (Telerik.Web.UI.RadFormDecorator)
    {
        Telerik.Web.UI.RadFormDecorator.initializePage("ctl00_RadFormDecorator1", "", "Windows7", 15);
    }
}
//]]>
</script><input id="ctl00_RadFormDecorator1_ClientState" name="ctl00_RadFormDecorator1_ClientState" type="hidden" />
</div>
          <div id="ctl00_pnlHeader">
     
            <div style="width:100%;background-color:#02244A;">
            <img src="Images/RBC-Logo.jpg" id="ctl00_Image1" />
            </div>
    
  
    
    <div style="color:White;position:absolute;top:20px;right:50px;">
          Research Central </div>
            <div id="ctl00_pnlHome" class="right1">
         
           
                     <table><tr><td valign="middle"><input type="image" name="ctl00$ctl04" src="Images/Buttons/Home.gif" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ctl04", "", false, "", "SearchUsers.aspx?Redirect=1", false, false))" style="border-width:0px;" /></td><td valign="middle"><a id="ctl00_Label3" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$Label3", "", false, "", "SearchUsers.aspx?Redirect=1", false, true))" style="color:White;">Home</a></td></tr></table>
                         
    </div>
                  
</div>
            <div id="ctl00_RadWindowManager1" style="display:none;">
    <div id="ctl00_RadWindowManager1_alerttemplate" style="display:none;">
        <div class="rwDialogPopup radalert">           
            <div class="rwDialogText">
            {1}            
            </div>
             
            <div>
                <a  onclick="$find('{0}').close();"
                class="rwPopupButton" href="javascript:void(0);">
                    <span class="rwOuterSpan">
                        <span class="rwInnerSpan">##LOC[OK]##</span>
                    </span>
                </a>               
            </div>
        </div>
        </div><div id="ctl00_RadWindowManager1_prompttemplate" style="display:none;">
         <div class="rwDialogPopup radprompt">         
                <div class="rwDialogText">
                {1}            
                </div>     
                <div>
                    <script type="text/javascript">
                    function RadWindowprompt_detectenter(id, ev, input)
                    {                          
                        if (!ev) ev = window.event;               
                        if (ev.keyCode == 13)
                        {                                                                  
                            var but = input.parentNode.parentNode.getElementsByTagName("A")[0];                        
                            if (but)
                            {                          
                                if (but.click) but.click();
                                else if (but.onclick)
                                {
                                    but.focus(); var click = but.onclick; but.onclick = null; if (click) click.call(but);                           
                                }
                            }
                           return false;
                        }
                        else return true;
                    }   
                    </script>
                    <input  onkeydown="return RadWindowprompt_detectenter('{0}', event, this);" type="text"  class="rwDialogInput" value="{2}" />
                </div>
                <div>
                    <a onclick="$find('{0}').close(this.parentNode.parentNode.getElementsByTagName('input')[0].value);"            
                        class="rwPopupButton" href="javascript:void(0);" ><span class="rwOuterSpan"><span class="rwInnerSpan">##LOC[OK]##</span></span></a>
                    <a onclick="$find('{0}').close(null);" class="rwPopupButton"  href="javascript:void(0);"><span class="rwOuterSpan"><span class="rwInnerSpan">##LOC[Cancel]##</span></span></a>
                </div>
            </div>                    
        </div><div id="ctl00_RadWindowManager1_confirmtemplate" style="display:none;">
        <div class="rwDialogPopup radconfirm">         
            <div class="rwDialogText">
            {1}            
            </div>                     
            <div>
                <a onclick="$find('{0}').close(true);"  class="rwPopupButton" href="javascript:void(0);" ><span class="rwOuterSpan"><span class="rwInnerSpan">##LOC[OK]##</span></span></a>
                <a onclick="$find('{0}').close(false);" class="rwPopupButton"  href="javascript:void(0);"><span class="rwOuterSpan"><span class="rwInnerSpan">##LOC[Cancel]##</span></span></a>
            </div>
        </div>     
        </div><input id="ctl00_RadWindowManager1_ClientState" name="ctl00_RadWindowManager1_ClientState" type="hidden" />
</div>
        <div id="ctl00_RadAjaxManager1SU">
    <span id="ctl00_RadAjaxManager1" style="display:none;"></span>
</div>
         
    <div>
         
 
   <div style="padding-left:30px;padding-top:30px;padding-right:30px;">
    <table style="width: 900px">
        
        <tr>
            <td class="style1">
                <div class="header2" >
    <span id="ctl00_ContentPlaceHolder1_lblClientName"></span> Manage Subscriptions
    </div>
            </td>
            <td align="right" style="font-weight:bold;">
  
            </td>
        </tr>
      <tr><td colspan="3"> </td></tr>
       <tr>
            <td  >
                  Please choose Subscriptions Criteria
            </td>
            <td colspan="2">
                 
                 
                    <script language="javascript" type="text/javascript">
                      
                        function ShowLookupForm() {
 
                            var ownd = window.radopen('SponsorLookup.aspx', "SponsorLookup");
                            ownd.setSize(800, 600);
                            ownd.center();
                            ownd.OnClientShow = OnClientShow(ownd);
                            ownd.OnClientClose = OnClientClose(ownd);
                            return false;
                        }
 
                        function OnClientShow(radWindow) {
                            if (document.documentElement && document.documentElement.scrollTop) {
                                var oTop = document.documentElement.scrollTop;
                                document.documentElement.scroll = "no";
                                document.documentElement.style.overflow = "hidden";
                                document.documentElement.scrollTop = oTop;
 
                            } else if (document.body) {
                                var oTop = document.body.scrollTop;
                                document.body.scroll = "no";
                                document.body.style.overflow = "hidden";
                                document.body.scrollTop = oTop;
                            }
                        }
 
                        function OnClientClose(radWindow) {
                            if (document.documentElement && document.documentElement.scrollTop) {
                                document.documentElement.scroll = "";
                                document.documentElement.style.overflow = "";
                            } else if (document.body) {
                                document.body.scroll = "";
                                document.body.style.overflow = "";
                            }
                        }
                        </script>
                         
                         
                        <div id="ctl00_ctl00_ContentPlaceHolder1_SponsorSelect1_RadAjaxPanel1Panel">
    <div id="ctl00_ContentPlaceHolder1_SponsorSelect1_RadAjaxPanel1">
         
<table cellpadding="3" cellspacing="3">
<tr>
            <td>
                Sponsor Name:
            </td>
            <td>
                <div id="ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor" class="RadComboBox RadComboBox_Windows7" style="width:200px;">
            <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                <tr class="rcbReadOnly">
                    <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$SponsorSelect1$cmbSponsor" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor_Input" value="" style="display: block;" readonly="readonly" /></td>
                    <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                </tr>
            </table>
            <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor_ClientState" name="ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor_ClientState" type="hidden" />
        </div>
            </td>
             <td>
                
                <a id="ctl00_ContentPlaceHolder1_SponsorSelect1_btnLookup" class="RadButton RadButton_Default rbSkinnedButton" href="javascript:void(0)" title="Lookup"><span class="rbPrimaryIcon" style="background-image:url(/DistributionSystem/Images/Buttons/Search.gif);"></span><input class="rbDecorated rbPrimary" type="submit" name="ctl00$ContentPlaceHolder1$SponsorSelect1$btnLookup_input" value="Lookup" /><input id="ctl00_ContentPlaceHolder1_SponsorSelect1_btnLookup_ClientState" name="ctl00_ContentPlaceHolder1_SponsorSelect1_btnLookup_ClientState" type="hidden" /></a>
            </td>
        </tr>
        
        </table>
         
    </div>
</div>
 
                 
            </td>
        </tr>
        <tr><td colspan="3">
             
 
<style type="text/css">
    .style1
    {
        width: 268435552px;
    }
</style>
 
 
    <script language="javascript" type="text/javascript">
        function ShowHTMLExample() {
                var ownd = window.radopen("HTMLExample.aspx");
                ownd.setSize(806, 868);
                ownd.center();
            return false;
        }
        function ShowRIMExample() {
            var ownd = window.radopen("RIMExample.aspx");
            ownd.setSize(651, 685);
            ownd.center();
            return false;
        }
</script>
 
<div id="ctl00_ContentPlaceHolder1_SubsPrefs1_ctl00_ContentPlaceHolder1_SubsPrefs1_RadAjaxPanel1Panel">
    <div id="ctl00_ContentPlaceHolder1_SubsPrefs1_RadAjaxPanel1">
         
                      
 <table cellpadding="1" cellspacing="1" border="1" bordercolor="#02244A" >
                <tr>
                <td>
                <table cellpadding="1" cellspacing="1" >
                <tr>
                <td rowspan="2" valign="top">Please select Subscription Preferences for Research</td>
                <td rowspan="2">
                    <table id="ctl00_ContentPlaceHolder1_SubsPrefs1_RadioButtonList1" border="0">
            <tr>
                <td><input id="ctl00_ContentPlaceHolder1_SubsPrefs1_RadioButtonList1_0" type="radio" name="ctl00$ContentPlaceHolder1$SubsPrefs1$RadioButtonList1" value="HTML" checked="checked" /><label for="ctl00_ContentPlaceHolder1_SubsPrefs1_RadioButtonList1_0">HTML</label></td>
            </tr><tr>
                <td><input id="ctl00_ContentPlaceHolder1_SubsPrefs1_RadioButtonList1_1" type="radio" name="ctl00$ContentPlaceHolder1$SubsPrefs1$RadioButtonList1" value="RIM Friendly" /><label for="ctl00_ContentPlaceHolder1_SubsPrefs1_RadioButtonList1_1">RIM Friendly</label></td>
            </tr>
        </table>
                    </td>
                <td valign="bottom"><a onclick="ShowHTMLExample();" id="ctl00_ContentPlaceHolder1_SubsPrefs1_btnHTMLExample" href="javascript:__doPostBack('ctl00$ContentPlaceHolder1$SubsPrefs1$btnHTMLExample','')">Example</a></td>
                 <td rowspan="2"> </td>
                </tr>
                <tr>
                <td valign="top">
                 <a onclick="ShowRIMExample();" id="ctl00_ContentPlaceHolder1_SubsPrefs1_LinkButton1" href="javascript:__doPostBack('ctl00$ContentPlaceHolder1$SubsPrefs1$LinkButton1','')">Example</a>
                 </td>
                </tr>
                <tr><td colspan="4">(Subscriptions preferences only apply to Equity research notes and research reports)</td></tr>
                </table>
 
        </td>   </tr>  </table>
 
    </div>
</div>   
            </td></tr>
       <tr>
       <td colspan="3" >
       <table cellpadding="1" cellspacing="1" ><tr><td valign="middle"><img id="ctl00_ContentPlaceHolder1_imgRequestApproval" src="Images/Buttons/Warning.gif" style="border-width:0px;" /></td>
       <td valign="middle"><span id="ctl00_ContentPlaceHolder1_lblRequestApproval">Please click the "Request" button for Equity and Non-Investment Grade subscriptions:</span></td>
        
       <td><input type="submit" name="ctl00$ContentPlaceHolder1$btnRequestApproval" value="Request" id="ctl00_ContentPlaceHolder1_btnRequestApproval" />
               </td>
        </tr>
        </table>
           </td>
       </tr>
        </table>
        </div>
   <div style="position:relative;left:20px;top:-10px;" >
   
    <p>
         <div id="ctl00_ContentPlaceHolder1_RadPanelBar1" class="RadPanelBar RadPanelBar_Windows7" style="width:90%;">
    <ul class="rpRootGroup">
        <li class="rpItem rpFirst"><a href="#" class="rpLink rpExpandable"><span class="rpOut"><img alt="" src="Images/Expand.jpg" class="rpImage" style="float:right;" /><span class="rpExpandHandle"></span><span class="rpText">Company</span></span></a><div class="rpSlide">
            <ul class="rpGroup rpLevel1 ">
                <li class="rpItem rpFirst rpLast"><div class="rpTemplate">
                     
                          
<script language="javascript">
    function OnClientItemsRequestingHandler(sender, eventArgs) {
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
    function OnClientDropDownOpening(sender, eventArgs) {
//        if (sender.get_items().get_count() == 0)
//            eventArgs.set_cancel(true);
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
//    function ShowAdvancedLookupForm() {
//        var ownd = window.radopen("AdvancedLookup.aspx", "AdvancedLookup");
//        ownd.setSize(1000, 800);
//        ownd.center();
//        ownd.OnClientClose = RefreshParentPage;
//        return false;
//    }
    function RefreshParentPage() {
        GetRadWindow().BrowserWindow.document.forms[0].submit();
    }
 
</script>
 
 <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_RadAjaxPanel1Panel" style="height:200px;">
                        <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_RadAjaxPanel1" style="height:200px;width:300px;">
                             
 
<table cellpadding="7" cellspacing="7">
<tr>
<td>Enter Exchange Ticker or Company Name</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany" class="RadComboBox RadComboBox_Windows7" style="width:290px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr>
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$cbxCompany" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_Input" value="" style="display: block;" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_Header" class="rcbHeader">
                <table style="width: 237px" cellspacing="3" cellpadding="3">
                    <tr>
                         
                         <td style="width: 177px;">
                        Company</td>
                        <td style="width: 60px;">
                        Ticker</td>
                    </tr>
                </table>
            </div><div class="rcbScroll rcbWidth" style="height:200px;float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_ClientState" type="hidden" />
                            </div>
    
    </td>
<td>
</td>
<td>
 
 <a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_btnAdvancedLookup" class="RadButton RadButton_Default rbSkinnedButton" href="javascript:void(0)" title="Advanced Lookup"><span class="rbPrimaryIcon" style="background-image:url(/DistributionSystem/Images/Buttons/Search.gif);"></span><input class="rbDecorated rbPrimary" type="submit" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$btnAdvancedLookup_input" value="Advanced Lookup" /><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_btnAdvancedLookup_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_btnAdvancedLookup_ClientState" type="hidden" /></a>
</td>
</tr>
<tr>
<td colspan="4">
    
    <div id="ctl00_ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_gridPanel">
                                <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid" class="RadGrid RadGrid_Windows7" style="width:535px;">
 
                                <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid_ClientState" type="hidden" />
                                    </div>
 
                            </div>
     
    <span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_lblMsg" style="color:#FF6600;"></span>
     
    </td>
</tr>
<tr>
<td colspan="4">
     
 
<style type="text/css">
    .style1
    {
        width: 268435552px;
    }
</style>
 
<div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_ctl00Panel">
                                <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_ctl00" style="width:300px;">
                                     
                     
<table cellpadding="3" cellspacing="3" border="0">
 
<tr>
<td valign="top"><span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_lblOptions">Please select Subscription Options</span></td>
 
<td valign="top">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td> <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_chxAll" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$chxAll" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$chxAll\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_chxAll">Check All</label></td></tr>
<tr><td><table id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1" border="0" style="width:236px;">
                                        <tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_0" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$0" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$0\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_0">Research</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_1" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$1" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$1\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_1">Short-Term Commentary (SPARC)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_2" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$2" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$2\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_2">Short-Term Trade Ideas (ATIS Equity Only)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_3" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$3" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$CheckBoxList1$3\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_CheckBoxList1_3">Multimedia Based Comment</label></td>
                                        </tr>
                                    </table></td></tr>
 
     
    </table>
    </td>
    <td valign="top"> </td>
</tr>
 
</table>
 
 
                                </div>
                            </div>   
    </td>
</tr>
 
 
</table>
 
                        </div>
                    </div>
 
 
 
 
                     
                </div></li>
            </ul>
        </div></li><li class="rpItem"><a href="#" class="rpLink rpExpandable"><span class="rpOut"><img alt="" src="Images/Expand.jpg" class="rpImage" style="float:right;" /><span class="rpExpandHandle"></span><span class="rpText">Analyst</span></span></a><div class="rpSlide">
            <ul class="rpGroup rpLevel1 ">
                <li class="rpItem rpFirst rpLast"><div class="rpTemplate">
                     
                     
<script language="javascript">
    function OnClientItemsRequestingHandler(sender, eventArgs) {
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
    function OnClientDropDownOpening(sender, eventArgs) {
//        if (sender.get_items().get_count() == 0)
//            eventArgs.set_cancel(true);
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
    
    function RefreshParentPage() {
        GetRadWindow().BrowserWindow.document.forms[0].submit();
    }
 
</script>
 
 <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_RadAjaxPanel1Panel" style="height:200px;">
                        <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_RadAjaxPanel1" style="height:200px;width:300px;">
                             
 
<table cellpadding="7" cellspacing="7">
<tr>
<td>Enter or Select Analyst</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst" class="RadComboBox RadComboBox_Windows7" style="width:200px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr>
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$cbxAnalyst" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst_Input" value="" style="display: block;" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst_ClientState" type="hidden" />
                            </div>
    
    </td>
<td>
</td>
<td> </td>
</tr>
<tr>
<td colspan="4">
    
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_grid" class="RadGrid RadGrid_Windows7" style="width:700px;">
 
                            <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_grid_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_grid_ClientState" type="hidden" />
                                </div>
                             
     
    <span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_lblMsg" style="color:#FF6600;"></span>
     
    </td>
</tr>
<tr>
<td colspan="4">
     
 
<style type="text/css">
    .style1
    {
        width: 268435552px;
    }
</style>
 
<div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_ctl00Panel">
                                <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_ctl00" style="width:300px;">
                                     
                     
<table cellpadding="3" cellspacing="3" border="0">
 
<tr>
<td valign="top"><span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_lblOptions">Please select Subscription Options</span></td>
 
<td valign="top">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td> <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_chxAll" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$chxAll" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$chxAll\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_chxAll">Check All</label></td></tr>
<tr><td><table id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1" border="0" style="width:236px;">
                                        <tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_0" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$0" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$0\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_0">Research</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_1" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$1" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$1\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_1">Short-Term Commentary (SPARC)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_2" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$2" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$2\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_2">Short-Term Trade Ideas (ATIS Equity Only)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_3" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$3" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$CheckBoxList1$3\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_CheckBoxList1_3">Multimedia Based Comment</label></td>
                                        </tr>
                                    </table></td></tr>
 
     
    </table>
    </td>
    <td valign="top"> </td>
</tr>
 
</table>
 
 
                                </div>
                            </div>   
    </td>
</tr>
 
 
</table>
 
                        </div>
                    </div>
 
 
 
 
                
                </div></li>
            </ul>
        </div></li><li class="rpItem"><a href="#" class="rpLink rpExpandable"><span class="rpOut"><img alt="" src="Images/Expand.jpg" class="rpImage" style="float:right;" /><span class="rpExpandHandle"></span><span class="rpText">Sector</span></span></a><div class="rpSlide">
            <ul class="rpGroup rpLevel1 ">
                <li class="rpItem rpFirst rpLast"><div class="rpTemplate">
                     
                         
<script language="javascript">
    function OnClientItemsRequestingHandler(sender, eventArgs) {
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
    function OnClientDropDownOpening(sender, eventArgs) {
//        if (sender.get_items().get_count() == 0)
//            eventArgs.set_cancel(true);
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
//    function ShowAdvancedLookupForm() {
//        var ownd = window.radopen("AdvancedLookup.aspx", "AdvancedLookup");
//        ownd.setSize(1000, 800);
//        ownd.center();
//        ownd.OnClientClose = RefreshParentPage;
//        return false;
//    }
    function RefreshParentPage() {
        GetRadWindow().BrowserWindow.document.forms[0].submit();
    }
 
</script>
 
 <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_RadAjaxPanel1Panel" style="height:200px;">
                        <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_RadAjaxPanel1" style="height:200px;width:300px;">
                             
 
<table cellpadding="7" cellspacing="7">
<tr>
<td>Enter or Select Sector</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector" class="RadComboBox RadComboBox_Windows7" style="width:250px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr class="rcbReadOnly">
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$cmbSector" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector_Input" value="" style="display: block;" readonly="readonly" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"><ul class="rcbList" style="list-style:none;margin:0;padding:0;zoom:1;"><li class="rcbItem "></li><li class="rcbItem ">Communication, Media & Entertainment</li><li class="rcbItem ">Consumer</li><li class="rcbItem ">Diversified</li><li class="rcbItem ">Energy</li><li class="rcbItem ">Financial</li><li class="rcbItem ">Health Care</li><li class="rcbItem ">Industrial</li><li class="rcbItem ">Mining</li><li class="rcbItem ">Paper and Forest Products</li><li class="rcbItem ">Real Estate</li><li class="rcbItem ">Technology - Hardware</li><li class="rcbItem ">Technology - Software, Processing & Outsourcing</li><li class="rcbItem ">Telecommunication Services</li></ul></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector_ClientState" type="hidden" />
                            </div>
    
    </td>
</tr>
<tr>
<td>Enter or Select Industry</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry" class="RadComboBox RadComboBox_Windows7" style="width:250px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr class="rcbReadOnly">
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$cmbIndustry" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry_Input" value="" style="display: block;" readonly="readonly" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry_ClientState" type="hidden" />
                            </div>
    
    </td>
</tr>
<tr>
<td colspan="2">
    
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_grid" class="RadGrid RadGrid_Windows7" style="width:700px;">
 
                            <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_grid_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_grid_ClientState" type="hidden" />
                                </div>
                             
     
    <span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_lblMsg" style="color:#FF6600;"></span>
     
    </td>
</tr>
<tr>
<td colspan="2">
     
 
<style type="text/css">
    .style1
    {
        width: 268435552px;
    }
</style>
 
<div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_ctl00Panel">
                                <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_ctl00" style="width:300px;">
                                     
                     
<table cellpadding="3" cellspacing="3" border="0">
 
<tr>
<td valign="top"><span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_lblOptions">Please select Subscription Options</span></td>
 
<td valign="top">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td> <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_chxAll" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$chxAll" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$chxAll\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_chxAll">Check All</label></td></tr>
<tr><td><table id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1" border="0" style="width:236px;">
                                        <tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_0" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$0" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$0\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_0">Research</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_1" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$1" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$1\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_1">Short-Term Commentary (SPARC)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_2" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$2" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$2\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_2">Short-Term Trade Ideas (ATIS Equity Only)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_3" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$3" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$CheckBoxList1$3\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_CheckBoxList1_3">Multimedia Based Comment</label></td>
                                        </tr>
                                    </table></td></tr>
 
     
    </table>
    </td>
    <td valign="top"> </td>
</tr>
 
</table>
 
 
                                </div>
                            </div>   
    </td>
</tr>
</table>
 
                        </div>
                    </div>
 
 
 
 
 
 
 
                   
                </div></li>
            </ul>
        </div></li><li class="rpItem"><a href="#" class="rpLink rpExpandable"><span class="rpOut"><img alt="" src="Images/Expand.jpg" class="rpImage" style="float:right;" /><span class="rpExpandHandle"></span><span class="rpText">Country/Currency</span></span></a><div class="rpSlide">
            <ul class="rpGroup rpLevel1 ">
                <li class="rpItem rpFirst rpLast"><div class="rpTemplate">
                     
                         
                    <script language="javascript" type="text/javascript">
                      
                        function ShowCCForm() {
 
                            var ownd = window.radopen("CurrencyCountryLookup.aspx?Clear=1", "CurrencyCountryLookup");
                            ownd.setSize(600, 600);
                            ownd.center();
                            return false;
                        }
                        </script>
                         
                         
 <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_RadAjaxPanel1Panel" style="height:200px;">
                        <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_RadAjaxPanel1" style="height:200px;width:300px;">
                             
 
<table cellpadding="7" cellspacing="7">
<tr>
<td valign="top">Please select Country or Currency</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency" class="RadListBox RadListBox_Default RadListBoxScrollable" style="height:225px;">
                                <div class="rlbGroup rlbGroupRight">
                                    <ul class="rlbList">
                                        <li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i0" class="rlbItem"><span class="rlbText">USD</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i1" class="rlbItem"><span class="rlbText">CAD</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i2" class="rlbItem"><span class="rlbText">ADP</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i3" class="rlbItem"><span class="rlbText">AED</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i4" class="rlbItem"><span class="rlbText">AFA</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i5" class="rlbItem"><span class="rlbText">ALL</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i6" class="rlbItem"><span class="rlbText">AMD</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i7" class="rlbItem"><span class="rlbText">ANG</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i8" class="rlbItem"><span class="rlbText">AOR</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_i9" class="rlbItem"><span class="rlbText">ARS</span></li>
                                    </ul>
                                </div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_ClientState" type="hidden" />
                            </div>
</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry" class="RadListBox RadListBox_Default RadListBoxScrollable" style="height:225px;width:150px;">
                                <div class="rlbGroup rlbGroupRight">
                                    <ul class="rlbList">
                                        <li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i0" class="rlbItem"><span class="rlbText">United States of America</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i1" class="rlbItem"><span class="rlbText">Canada</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i2" class="rlbItem"><span class="rlbText">European Union</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i3" class="rlbItem"><span class="rlbText">Aruba</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i4" class="rlbItem"><span class="rlbText">Afghanistan</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i5" class="rlbItem"><span class="rlbText">Angola</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i6" class="rlbItem"><span class="rlbText">Anguilla</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i7" class="rlbItem"><span class="rlbText">Ã…land Islands</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i8" class="rlbItem"><span class="rlbText">Albania</span></li><li id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_i9" class="rlbItem"><span class="rlbText">Andorra</span></li>
                                    </ul>
                                </div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_ClientState" type="hidden" />
                            </div>
</td>
<td valign="top">
 
         
         <a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_btnOther" class="RadButton RadButton_Default rbSkinnedButton" href="javascript:void(0)" title="Advanced Lookup"><span class="rbPrimaryIcon" style="background-image:url(/DistributionSystem/Images/Buttons/Search.gif);"></span><input class="rbDecorated rbPrimary" type="submit" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$btnOther_input" value="Advanced Lookup" /><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_btnOther_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_btnOther_ClientState" type="hidden" /></a>
</td>
</tr>
<td colspan="4">
    
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_grid" class="RadGrid RadGrid_Windows7" style="width:535px;">
 
                            <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_grid_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_grid_ClientState" type="hidden" />
                                </div>
                             
     
    <span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lblMsg" style="color:#FF6600;"></span>
     
    </td>
</tr>
<tr>
<td colspan="4">
     
 
<style type="text/css">
    .style1
    {
        width: 268435552px;
    }
</style>
 
<div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_ctl00Panel">
                                <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_ctl00" style="width:300px;">
                                     
                     
<table cellpadding="3" cellspacing="3" border="0">
 
<tr>
<td valign="top"><span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_lblOptions">Please select Subscription Options</span></td>
 
<td valign="top">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td> <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_chxAll" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$chxAll" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$chxAll\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_chxAll">Check All</label></td></tr>
<tr><td><table id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1" border="0" style="width:236px;">
                                        <tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_0" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$0" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$0\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_0">Research</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_1" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$1" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$1\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_1">Short-Term Commentary (SPARC)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_2" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$2" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$2\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_2">Short-Term Trade Ideas (ATIS Equity Only)</label></td>
                                        </tr><tr>
                                            <td><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_3" type="checkbox" name="ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$3" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$CheckBoxList1$3\',\'\')', 0)" /><label for="ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_CheckBoxList1_3">Multimedia Based Comment</label></td>
                                        </tr>
                                    </table></td></tr>
 
     
    </table>
    </td>
    <td valign="top"> </td>
</tr>
 
</table>
 
 
                                </div>
                            </div>   
    </td>
</tr>
 
</table>
 
                        </div>
                    </div>
 
 
 
 
                   
                </div></li>
            </ul>
        </div></li><li class="rpItem rpLast"><a href="#" class="rpLink rpExpandable"><span class="rpOut"><img alt="" src="Images/Expand.jpg" class="rpImage" style="float:right;" /><span class="rpExpandHandle"></span><span class="rpText">Research Products</span></span></a><div class="rpSlide">
            <ul class="rpGroup rpLevel1 ">
                <li class="rpItem rpFirst rpLast"><div class="rpTemplate">
                     
                         
<script language="javascript">
    function OnClientItemsRequestingHandler(sender, eventArgs) {
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
    function OnClientDropDownOpening(sender, eventArgs) {
//        if (sender.get_items().get_count() == 0)
//            eventArgs.set_cancel(true);
        if (sender.get_text().length < 2) {
            eventArgs.set_cancel(true);
        }
    }
//    function ShowAdvancedLookupForm() {
//        var ownd = window.radopen("AdvancedLookup.aspx", "AdvancedLookup");
//        ownd.setSize(1000, 800);
//        ownd.center();
//        ownd.OnClientClose = RefreshParentPage;
//        return false;
//    }
    function RefreshParentPage() {
        GetRadWindow().BrowserWindow.document.forms[0].submit();
    }
 
</script>
 
 <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_RadAjaxPanel1Panel" style="height:200px;">
                        <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_RadAjaxPanel1" style="height:200px;width:300px;">
                             
 
<table cellpadding="7" cellspacing="7">
<tr>
<td>Please select Product</td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType" class="RadComboBox RadComboBox_Windows7" style="width:250px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr class="rcbReadOnly">
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbContentType" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType_Input" value="" style="display: block;" readonly="readonly" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"><ul class="rcbList" style="list-style:none;margin:0;padding:0;zoom:1;"><li class="rcbItem "></li><li class="rcbItem ">Research Publications</li><li class="rcbItem ">SPARC</li><li class="rcbItem ">Research At A Glance</li><li class="rcbItem ">Multimedia</li></ul></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType_ClientState" type="hidden" />
                            </div>
    
    </td>
</tr>
<tr>
<td> <span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_lblDiscipline">Please select Discipline</span></td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline" class="RadComboBox RadComboBox_Windows7" style="width:250px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr class="rcbReadOnly">
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbDiscipline" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline_Input" value="" style="display: block;" readonly="readonly" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline_ClientState" type="hidden" />
                            </div>
    
    </td>
</tr>
<tr>
<td><span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_lblPublishing">Please select Publication</span></td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector" class="RadComboBox RadComboBox_Windows7" style="width:250px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr class="rcbReadOnly">
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbSector" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector_Input" value="" style="display: block;" readonly="readonly" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector_ClientState" type="hidden" />
                            </div>
    
    </td>
</tr>
<tr>
<td> </td>
<td>
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector" class="RadComboBox RadComboBox_Windows7" style="width:250px;">
                                <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                                    <tr class="rcbReadOnly">
                                        <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft"><input name="ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbSubSector" type="text" class="rcbInput" id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector_Input" value="" style="display: block;" readonly="readonly" /></td>
                                        <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
                                    </tr>
                                </table>
                                <div class="rcbSlide" style="z-index:6000;"><div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Windows7 " style="float:left;display:none;"><div class="rcbScroll rcbWidth" style="float:left;width:100%;"></div></div></div><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector_ClientState" type="hidden" />
                            </div>
    
    </td>
</tr>
<tr>
<td colspan="2">
    
    <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_grid" class="RadGrid RadGrid_Windows7" style="width:700px;">
 
                            <input id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_grid_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_grid_ClientState" type="hidden" />
                                </div>
                             
     
    <span id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_lblMsg" style="color:#FF6600;"></span>
     
    </td>
</tr>
<tr>
<td colspan="2">
     
 
<style type="text/css">
    .style1
    {
        width: 268435552px;
    }
</style>
 
<div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_SubsOptions1_ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_SubsOptions1_ctl00Panel">
                                <div id="ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_SubsOptions1_ctl00" style="width:300px;">
                                     
                     
<table cellpadding="3" cellspacing="3" border="0">
 
<tr>
<td valign="top"></td>
 
<td valign="top">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td> </td></tr>
<tr><td></td></tr>
 
     
    </table>
    </td>
    <td valign="top"> </td>
</tr>
 
</table>
 
 
                                </div>
                            </div>   
    </td>
</tr>
</table>
 
                        </div>
                    </div>
 
 
 
 
 
 
 
 
 
 
 
                   
                </div></li>
            </ul>
        </div></li>
    </ul><input id="ctl00_ContentPlaceHolder1_RadPanelBar1_ClientState" name="ctl00_ContentPlaceHolder1_RadPanelBar1_ClientState" type="hidden" />
</div>
 
   </p>
   <table cellpadding="3" cellspacing="3">
<tr><td colspan="2"><span id="ctl00_ContentPlaceHolder1_lblMsg" style="color:#FF6600;"></span></td></tr>
    <tr>
        <td colspan="2" align="center">
            <input type="submit" name="ctl00$ContentPlaceHolder1$btnSave" value="Save" id="ctl00_ContentPlaceHolder1_btnSave" style="width:100px;" />          
            <input type="submit" name="ctl00$ContentPlaceHolder1$btnCancel" value="Cancel" id="ctl00_ContentPlaceHolder1_btnCancel" style="width:100px;" />
            </td>
            <td colspan="2" align="center">
            </td>
    </tr>
</table>
    </div>
 
    </div>
     
 
<script type="text/javascript">
//<![CDATA[
Telerik.Web.UI.RadListBox._preInitialize("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency","0");Telerik.Web.UI.RadListBox._preInitialize("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry","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=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4:en-US:62e881c6-518e-447d-b6e7-1af83cb2d164:ef4a543:a4012de0:92753c09:605d48d6:1c2121e:ffbf0211:fe53831e:bc8339f7:5951aeec:f81bccde:9e1572d6:3f3482cd:4d471440:169db17e';
                            Sys.Application.remove_load(loadHandler);
                        };
                        Sys.Application.add_load(loadHandler);
                    })();Sys.Application.initialize();
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadFormDecorator, {"clientStateFieldID":"ctl00_RadFormDecorator1_ClientState","decoratedControls":15,"enabled":true,"skin":"Windows7"}, null, null, $get("ctl00_RadFormDecorator1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadWindowManager, {"behaviors":4,"clientStateFieldID":"ctl00_RadWindowManager1_ClientState","formID":"aspnetForm","iconUrl":"","keepInScreenBounds":true,"minimizeIconUrl":"","name":"RadWindowManager1","skin":"Windows7","windowControls":"[]"}, null, null, $get("ctl00_RadWindowManager1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxManager, {"_updatePanels":"","ajaxSettings":[{InitControlID : "ctl00_ContentPlaceHolder1_SponsorSelect1_RadAjaxPanel1",UpdatedControls : [{ControlID:"ctl00_ContentPlaceHolder1_SponsorSelect1_RadAjaxPanel1",PanelID:""}]},{InitControlID : "ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid",UpdatedControls : [{ControlID:"ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid",PanelID:""}]}],"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"defaultLoadingPanelID":"","enableAJAX":true,"enableHistory":false,"links":[],"styles":[],"uniqueID":"ctl00$RadAjaxManager1","updatePanelsRenderMode":0}, null, null, $get("ctl00_RadAjaxManager1"));
});
 
WebForm_InitCallback();Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$SponsorSelect1$cmbSponsor\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$SponsorSelect1$cmbSponsor","clientStateFieldID":"ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[]}, null, null, $get("ctl00_ContentPlaceHolder1_SponsorSelect1_cmbSponsor"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadButton, {"_postBackReference":"","clientStateFieldID":"ctl00_ContentPlaceHolder1_SponsorSelect1_btnLookup_ClientState","iconData":{"primaryIconUrl":"/Images/Buttons/Search.gif"},"imageData":{},"text":"Lookup","toggleStatesData":[],"uniqueGroupName":"","uniqueID":"ctl00$ContentPlaceHolder1$SponsorSelect1$btnLookup"}, {"clicked":ShowLookupForm}, null, $get("ctl00_ContentPlaceHolder1_SponsorSelect1_btnLookup"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$SponsorSelect1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_SponsorSelect1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$SubsPrefs1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_SubsPrefs1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":200,"_isAspNet35":true,"_isTemplated":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$cbxCompany\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$cbxCompany","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany_ClientState","collapseAnimation":"{\"duration\":450}","enableLoadOnDemand":true,"expandAnimation":"{\"duration\":450}","itemData":[]}, {"dropDownOpening":OnClientDropDownOpening,"itemsRequesting":OnClientItemsRequestingHandler}, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_cbxCompany"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadButton, {"_postBackReference":"WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions('ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$btnAdvancedLookup', '', false, '', 'AdvancedLookup.aspx', false, false))","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_btnAdvancedLookup_ClientState","iconData":{"primaryIconUrl":"/Images/Buttons/Search.gif"},"imageData":{},"text":"Advanced Lookup","toggleStatesData":[],"uniqueGroupName":"","uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$btnAdvancedLookup"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_btnAdvancedLookup"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadGrid, {"ClientID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid","ClientSettings":{"AllowAutoScrollOnDragDrop":true,"ShouldCreateRows":true,"DataBinding":{},"Selecting":{},"Scrolling":{},"Resizing":{},"ClientMessages":{},"KeyboardNavigationSettings":{"AllowActiveRowCycle":false,"EnableKeyboardShortcuts":true,"FocusKey":89,"InitInsertKey":73,"RebindKey":82,"ExitEditInsertModeKey":27,"UpdateInsertItemKey":13,"DeleteActiveRow":127,"ExpandDetailTableKey":39,"CollapseDetailTableKey":37},"Animation":{}},"Skin":"Windows7","UniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$grid","_activeRowIndex":"","_controlToFocus":"","_currentPageIndex":0,"_editIndexes":"[]","_embeddedSkin":true,"_gridTableViewsData":"[{\"ClientID\":null,\"UniqueID\":null,\"PageSize\":10,\"PageCount\":1,\"EditMode\":\"EditForms\",\"CurrentPageIndex\":0,\"VirtualItemCount\":0,\"AllowMultiColumnSorting\":false,\"AllowNaturalSort\":true,\"AllowFilteringByColumn\":false,\"PageButtonCount\":10,\"HasDetailTables\":false,\"IsItemInserted\":false,\"clientDataKeyNames\":[],\"_dataBindTemplates\":false,\"_selectedItemStyle\":\"\",\"_selectedItemStyleClass\":\"rgSelectedRow\",\"_columnsData\":[{\"UniqueName\":\"CompanySelected\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"Equity\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"InvestmentGrade\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"NonInvestmentGrade\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Remove\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":false,\"ColumnType\":\"GridButtonColumn\",\"Display\":true}]}]","_masterClientID":null,"_shouldFocusOnPage":false,"allowMultiRowSelection":false,"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid_ClientState"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_grid"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$SubsOptions1$ctl00"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_SubsOptions1_ctl00"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i0$ByCompany1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i0_i0_ByCompany1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$cbxAnalyst\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$cbxAnalyst","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst_ClientState","collapseAnimation":"{\"duration\":450}","enableLoadOnDemand":true,"expandAnimation":"{\"duration\":450}","itemData":[]}, {"dropDownOpening":OnClientDropDownOpening,"itemsRequesting":OnClientItemsRequestingHandler}, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_cbxAnalyst"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadGrid, {"ClientID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_grid","ClientSettings":{"AllowAutoScrollOnDragDrop":true,"ShouldCreateRows":true,"DataBinding":{},"Selecting":{},"Scrolling":{},"Resizing":{},"ClientMessages":{},"KeyboardNavigationSettings":{"AllowActiveRowCycle":false,"EnableKeyboardShortcuts":true,"FocusKey":89,"InitInsertKey":73,"RebindKey":82,"ExitEditInsertModeKey":27,"UpdateInsertItemKey":13,"DeleteActiveRow":127,"ExpandDetailTableKey":39,"CollapseDetailTableKey":37},"Animation":{}},"Skin":"Windows7","UniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$grid","_activeRowIndex":"","_controlToFocus":"","_currentPageIndex":0,"_editIndexes":"[]","_embeddedSkin":true,"_gridTableViewsData":"[{\"ClientID\":null,\"UniqueID\":null,\"PageSize\":10,\"PageCount\":1,\"EditMode\":\"EditForms\",\"CurrentPageIndex\":0,\"VirtualItemCount\":0,\"AllowMultiColumnSorting\":false,\"AllowNaturalSort\":true,\"AllowFilteringByColumn\":false,\"PageButtonCount\":10,\"HasDetailTables\":false,\"IsItemInserted\":false,\"clientDataKeyNames\":[],\"_dataBindTemplates\":false,\"_selectedItemStyle\":\"\",\"_selectedItemStyleClass\":\"rgSelectedRow\",\"_columnsData\":[{\"UniqueName\":\"AnalystSelected\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"Equity\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"InvestmentGrade\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"NonInvestmentGrade\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"FIC\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"EmergingMarkets\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Economics\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Remove\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":false,\"ColumnType\":\"GridButtonColumn\",\"Display\":true}]}]","_masterClientID":null,"_shouldFocusOnPage":false,"allowMultiRowSelection":false,"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_grid_ClientState"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_grid"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$SubsOptions1$ctl00"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_SubsOptions1_ctl00"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i1$i0$ByAnalyst1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i1_i0_ByAnalyst1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$cmbSector\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$cmbSector","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[{"selected":true},{"value":"100"},{"value":"101"},{"value":"102"},{"value":"103"},{"value":"104"},{"value":"105"},{"value":"194"},{"value":"106"},{"value":"107"},{"value":"108"},{"value":"109"},{"value":"110"},{"value":"111"}],"selectedIndex":0}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbSector"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$cmbIndustry\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$cmbIndustry","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[]}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_cmbIndustry"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadGrid, {"ClientID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_grid","ClientSettings":{"AllowAutoScrollOnDragDrop":true,"ShouldCreateRows":true,"DataBinding":{},"Selecting":{},"Scrolling":{},"Resizing":{},"ClientMessages":{},"KeyboardNavigationSettings":{"AllowActiveRowCycle":false,"EnableKeyboardShortcuts":true,"FocusKey":89,"InitInsertKey":73,"RebindKey":82,"ExitEditInsertModeKey":27,"UpdateInsertItemKey":13,"DeleteActiveRow":127,"ExpandDetailTableKey":39,"CollapseDetailTableKey":37},"Animation":{}},"Skin":"Windows7","UniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$grid","_activeRowIndex":"","_controlToFocus":"","_currentPageIndex":0,"_editIndexes":"[]","_embeddedSkin":true,"_gridTableViewsData":"[{\"ClientID\":null,\"UniqueID\":null,\"PageSize\":10,\"PageCount\":1,\"EditMode\":\"EditForms\",\"CurrentPageIndex\":0,\"VirtualItemCount\":0,\"AllowMultiColumnSorting\":false,\"AllowNaturalSort\":true,\"AllowFilteringByColumn\":false,\"PageButtonCount\":10,\"HasDetailTables\":false,\"IsItemInserted\":false,\"clientDataKeyNames\":[],\"_dataBindTemplates\":false,\"_selectedItemStyle\":\"\",\"_selectedItemStyleClass\":\"rgSelectedRow\",\"_columnsData\":[{\"UniqueName\":\"SectorSelected\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"Equity\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"InvestmentGrade\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"NonInvestmentGrade\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"US\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Canada\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"International\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Remove\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":false,\"ColumnType\":\"GridButtonColumn\",\"Display\":true}]}]","_masterClientID":null,"_shouldFocusOnPage":false,"allowMultiRowSelection":false,"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_grid_ClientState"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_grid"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$SubsOptions1$ctl00"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_SubsOptions1_ctl00"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i2$i0$BySector1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i2_i0_BySector1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadListBox, {"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$lbCurrency\u0027,\u0027arguments\u0027)","autoPostBack":true,"checkedIndices":[],"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency_ClientState","itemData":[{"value":"1175"},{"value":"1030"},{"value":"1001"},{"value":"1002"},{"value":"1003"},{"value":"1004"},{"value":"1005"},{"value":"1006"},{"value":"1007"},{"value":"1008"}],"selectedIndices":[],"selectionMode":1}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCurrency"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadListBox, {"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$lbCountry\u0027,\u0027arguments\u0027)","autoPostBack":true,"checkedIndices":[],"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry_ClientState","itemData":[{"value":"1227"},{"value":"1039"},{"value":"1070"},{"value":"1013"},{"value":"1001"},{"value":"1007"},{"value":"1008"},{"value":"1002"},{"value":"1003"},{"value":"1006"}],"selectedIndices":[],"selectionMode":1}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_lbCountry"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadButton, {"_postBackReference":"","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_btnOther_ClientState","iconData":{"primaryIconUrl":"/Images/Buttons/Search.gif"},"imageData":{},"text":"Advanced Lookup","toggleStatesData":[],"uniqueGroupName":"","uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$btnOther"}, {"clicked":ShowCCForm}, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_btnOther"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadGrid, {"ClientID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_grid","ClientSettings":{"AllowAutoScrollOnDragDrop":true,"ShouldCreateRows":true,"DataBinding":{},"Selecting":{},"Scrolling":{},"Resizing":{},"ClientMessages":{},"KeyboardNavigationSettings":{"AllowActiveRowCycle":false,"EnableKeyboardShortcuts":true,"FocusKey":89,"InitInsertKey":73,"RebindKey":82,"ExitEditInsertModeKey":27,"UpdateInsertItemKey":13,"DeleteActiveRow":127,"ExpandDetailTableKey":39,"CollapseDetailTableKey":37},"Animation":{}},"Skin":"Windows7","UniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$grid","_activeRowIndex":"","_controlToFocus":"","_currentPageIndex":0,"_editIndexes":"[]","_embeddedSkin":true,"_gridTableViewsData":"[{\"ClientID\":null,\"UniqueID\":null,\"PageSize\":10,\"PageCount\":1,\"EditMode\":\"EditForms\",\"CurrentPageIndex\":0,\"VirtualItemCount\":0,\"AllowMultiColumnSorting\":false,\"AllowNaturalSort\":true,\"AllowFilteringByColumn\":false,\"PageButtonCount\":10,\"HasDetailTables\":false,\"IsItemInserted\":false,\"clientDataKeyNames\":[],\"_dataBindTemplates\":false,\"_selectedItemStyle\":\"\",\"_selectedItemStyleClass\":\"rgSelectedRow\",\"_columnsData\":[{\"UniqueName\":\"CountryCurrencySelected\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"FIC\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"EmergingMarkets\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Remove\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":false,\"ColumnType\":\"GridButtonColumn\",\"Display\":true}]}]","_masterClientID":null,"_shouldFocusOnPage":false,"allowMultiRowSelection":false,"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_grid_ClientState"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_grid"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$SubsOptions1$ctl00"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_SubsOptions1_ctl00"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i3$i0$ByCountryCurrency1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i3_i0_ByCountryCurrency1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbContentType\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbContentType","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[{"selected":true},{"value":"Research Publications"},{"value":"SPARC"},{"value":"Research At A Glance"},{"value":"Multimedia"}],"selectedIndex":0}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbContentType"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbDiscipline\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbDiscipline","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[]}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbDiscipline"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbSector\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbSector","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[]}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSector"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadComboBox, {"_dropDownWidth":0,"_height":0,"_isAspNet35":true,"_postBackReference":"__doPostBack(\u0027ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbSubSector\u0027,\u0027arguments\u0027)","_skin":"Windows7","_uniqueId":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$cmbSubSector","clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","itemData":[]}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_cmbSubSector"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadGrid, {"ClientID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_grid","ClientSettings":{"AllowAutoScrollOnDragDrop":true,"ShouldCreateRows":true,"DataBinding":{},"Selecting":{},"Scrolling":{},"Resizing":{},"ClientMessages":{},"KeyboardNavigationSettings":{"AllowActiveRowCycle":false,"EnableKeyboardShortcuts":true,"FocusKey":89,"InitInsertKey":73,"RebindKey":82,"ExitEditInsertModeKey":27,"UpdateInsertItemKey":13,"DeleteActiveRow":127,"ExpandDetailTableKey":39,"CollapseDetailTableKey":37},"Animation":{}},"Skin":"Windows7","UniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$grid","_activeRowIndex":"","_controlToFocus":"","_currentPageIndex":0,"_editIndexes":"[]","_embeddedSkin":true,"_gridTableViewsData":"[{\"ClientID\":null,\"UniqueID\":null,\"PageSize\":10,\"PageCount\":1,\"EditMode\":\"EditForms\",\"CurrentPageIndex\":0,\"VirtualItemCount\":0,\"AllowMultiColumnSorting\":false,\"AllowNaturalSort\":true,\"AllowFilteringByColumn\":false,\"PageButtonCount\":10,\"HasDetailTables\":false,\"IsItemInserted\":false,\"clientDataKeyNames\":[],\"_dataBindTemplates\":false,\"_selectedItemStyle\":\"\",\"_selectedItemStyleClass\":\"rgSelectedRow\",\"_columnsData\":[{\"UniqueName\":\"ProductSelected\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"USChecked\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"CanadaChecked\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"InternationalChecked\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridCheckBoxColumn\",\"Display\":true},{\"UniqueName\":\"Remove\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":false,\"ColumnType\":\"GridButtonColumn\",\"Display\":true}]}]","_masterClientID":null,"_shouldFocusOnPage":false,"allowMultiRowSelection":false,"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_grid_ClientState"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_grid"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$SubsOptions1$ctl00"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_SubsOptions1_ctl00"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadAjaxPanel, {"clientEvents":{OnRequestStart:"",OnResponseEnd:""},"enableAJAX":true,"enableHistory":false,"links":[],"loadingPanelID":"","styles":[],"uniqueID":"ctl00$ContentPlaceHolder1$RadPanelBar1$i4$i0$ByProduct1$RadAjaxPanel1"}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1_i4_i0_ByProduct1_RadAjaxPanel1"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadPanelBar, {"_skin":"Windows7","allowCollapseAllItems":true,"clientStateFieldID":"ctl00_ContentPlaceHolder1_RadPanelBar1_ClientState","collapseAnimation":"{\"duration\":450}","expandAnimation":"{\"duration\":450}","expandMode":1,"itemData":[{"items":[{"templated":true}],"expandedImageUrl":"Images/Collapse.jpg","imageUrl":"Images/Expand.jpg"},{"items":[{"templated":true}],"expandedImageUrl":"Images/Collapse.jpg","imageUrl":"Images/Expand.jpg"},{"items":[{"templated":true}],"expandedImageUrl":"Images/Collapse.jpg","imageUrl":"Images/Expand.jpg"},{"items":[{"templated":true}],"expandedImageUrl":"Images/Collapse.jpg","imageUrl":"Images/Expand.jpg"},{"items":[{"templated":true}],"expandedImageUrl":"Images/Collapse.jpg","imageUrl":"Images/Expand.jpg"}]}, null, null, $get("ctl00_ContentPlaceHolder1_RadPanelBar1"));
});
//]]>
</script>
</form>
</body>
</html>
0
Bozhidar
Telerik team
answered on 17 Nov 2010, 08:35 AM
Hi Gary,

Could you also provide the following two files:

<link href="CSS/research.css" rel="stylesheet" type="text/css" />
<link href="CSS/BorderStyle.css" rel="stylesheet" type="text/css" />

As there could be some global selectors, that could case the problem?

Best wishes,
Bojo
the Telerik team
Browse the vast support resources we have to jumpstart 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
Bozhidar
Telerik team
answered on 17 Nov 2010, 10:50 AM
Hi Gary,

We succeeded to run a project based on your code and could not reproduce the problem. Please find attached buttonicondisappear.zip.

In that case I suppose that it could be a CSS problem coming from a global CSS selector, that could be placed in some of the following files:

<link href="CSS/research.css" rel="stylesheet" type="text/css" />
<link href="CSS/BorderStyle.css" rel="stylesheet" type="text/css" />

If you send us these files, we could continue to test, or you could remove it from your project to test if the problem still exists. You could try to search for global styles applied to span element inside anchor and its hover state.

Best wishes,
Bojo
the Telerik team
Browse the vast support resources we have to jumpstart 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
Gary Meagher
Top achievements
Rank 1
answered on 17 Nov 2010, 03:19 PM
attached are my css files.
It seems that my css is causing all sort of issues with RadButton as well as RadPanelBar etc.
Not sure exactly what to look for.

Thanks
body1
{
    font-family:Arial;
    FONT-SIZE: 81.5%;
    BACKGROUND: url(../Images/bg-standard.gif) #fff fixed 50% top;
    MARGIN: 0px;
    COLOR: #003399;
    LINE-HEIGHT: 1.4em;
    POSITION: relative;
    text-align: center;
}
body
{
    font-family:Arial;
    FONT-SIZE: 9pt;
    MARGIN: 0px;
    COLOR: #003399;
    LINE-HEIGHT: 1.4em;
    POSITION: relative;
    text-align: left;
}
 
TD
{
    white-space: nowrap;
}
 
div#main {
 
  width: 978px;
 
  margin-left: auto;
 
  margin-right: auto;
 
  text-align: left;
 
}
 
div#line
{
    width:800px;
    height:1px;
    border-color:#003399;
     
}
 
 
.header
{
    font-family: 'Arial Unicode MS';
    font-size: 16pt;
    font-style: normal;
    color:#F5FAFF;
    font-weight: bold;
}
.header2
{
    font-family: 'Arial Unicode MS';
    font-size: 12pt;
    font-style: normal;
    color:#003399;
    font-weight: bold;
}
.header3
{
    font-family: 'Arial Unicode MS';
    font-size: 13pt;
    font-style: normal;
    color:#003399;
    font-weight: bold;
}
.export
{
    text-decoration: none;
 
}
.titleLabels
{
    font-family: 'Arial Unicode MS';
    font-size: 10pt;
    font-style: normal;
    color: #003399;
    direction:rtl;
    text-decoration: underline blink;
}
 
.content
{
    top:400px;
}
 
.right
{
position:absolute;
right:80px;
top:5px;
width:200px;
color: #003399;
font-weight:bold;
 
}
.left
{
    left: 40px;
}
.right1
{
position:absolute;
right:80px;
top:25px;
color: #F5FAFF;
width:200px;
 
}
.headerPanel
{
    background-color:#02244A;
    color:#F5FAFF;
}
.right2
{
position:absolute;
right:80px;
top:65px;
color:#F5FAFF;
width:200px;
 
}
 
.button
{
    cursor:pointer;
}
.input
{
    cursor:pointer;
}
 
.buttonRed
{
    border-color:Red;
    border:1px;
    background-color:#ffdddd;
    color:Red;
    font-weight:bold;
}
.center
{
    padding-left:5px;
    cursor: pointer;
}
.center1
{
    padding-left:20px;
    cursor: pointer;
}
.DockStyle1
{
    width: 15px;
    background:url(Images/Collapse.jpg);
}
.DockStyle2
{
    width: 15px;
    background:url(Images/Expand.jpg);
}
.approval
{
    font-style:italic;
    color:Red;
}
.blocked
{
    position:absolute;
    top:120px;
    left:180px;
    vertical-align:middle;
    vertical-align:text-top;
}
 
.RadPanelBar .rpExpandHandle
{
    display:none !important;
}
0
Gary Meagher
Top achievements
Rank 1
answered on 17 Nov 2010, 03:38 PM
actually, after removing the my css references. I still have that problem.
Thanks
0
Gary Meagher
Top achievements
Rank 1
answered on 17 Nov 2010, 04:01 PM
Is there any way you can provide us with a workaround where the
predefined icon will have a transparent background in IE6?
- rbSearch
0
Bozhidar
Telerik team
answered on 17 Nov 2010, 04:33 PM
Hello Gary,

Unfortunately it seems that we cannot reproduce the problem unless you send us a project or live url where the issue exists.

Please find attached buttonie6sprite.zip containing a small project with a workaround where the
predefined icon will have a transparent background in IE6. Please note, that the original PNG was exported into GIF and the quality is not as good as it was with the png. If you want to use png for all other browsers and gif image for IE6 only, you could use the underscore IE6 hack:

{
 _background-image: url(rbPredefinedIcons.gif) !important;
}

The provided IE6 fix could be placed in the head section of your document.

Sincerely yours,
Bojo
the Telerik team
Browse the vast support resources we have to jumpstart 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
Gary Meagher
Top achievements
Rank 1
answered on 17 Nov 2010, 08:25 PM
Unfortunately that solution doesn't work on my end.
I'm openning a support ticket as I was able to reproduce the issue on a small project.
Thanks.
0
Accepted
Pero
Telerik team
answered on 18 Nov 2010, 03:37 PM
Hello Gary,

Thank you for the sample project. We reproduced the issue immediately.

Let me explain in more detail how the RadButton's Icon functionality works, and it will become clear why the problem occurs.

An icon will be shown on the button if the PrimaryIconUrl or PrimaryIconCss class property is set (the same applies for the Secondary Icon). The Icon URL's (PrimaryIconUrl, PrimaryHoveredIconUrl, PrimaryPressedIconUrl, etc.) are resolved using Control's method ResolveUrl. Once the URL's are resolved they are serialized and sent to the client. This way the hovered and pressed icons can be applied, without the need for a trip to the server. Once you move the mouse pointer over the control, the button looks for a hovered icon, and if such is specified it will be applied. When the mouse leaves the control, even if a hovered or pressed icon is not specified, the button will re-apply the normal icon (the PrimaryIconUrl).
This is where the problem arises - the url of the primary icon does not point to a valid image, and that's why it disappears. The question is why the url is not valid. It is not valid, because it was not resolved correctly. The PrimaryIconUrl as it is specified now "../Images/Buttons/Search.gif" points to the parent directory of the current folder of where the button's page resides, then it searches for Images/Buttons/Search.gif in the parent folder. However, this is a UserControl, and it is placed on another page which resides in different folder. Since the UserControl and the page does not have the same parent directory, once the UserControl is positioned on the page, URL to the icon will not be valid anymore (the current page does not reside on the same level in the web-sites folder's tree).
So, when specifying paths to images in UserControls and content pages of a MasterPage, it is good practice to specify the resources relatively to the root directory. This way we avoid situations like this, where the path is not resolved correctly.

All this being said, the path in the sample project provided should be specified in the following way(ByCompany.ascx):

<telerik:RadButton ID="btnAdvancedLookup" runat="server" Text="Advanced Lookup" 
                      PostBackUrl="~/AdvancedLookup.aspx" AutoPostBack="true" >
<Icon PrimaryIconUrl="~/Images/Buttons/Search.gif"     />
</telerik:RadButton>

instead of:

<telerik:RadButton ID="btnAdvancedLookup" runat="server" Text="Advanced Lookup" 
                      PostBackUrl="~/AdvancedLookup.aspx" AutoPostBack="true" >
<Icon PrimaryIconUrl="../Images/Buttons/Search.gif"     />
</telerik:RadButton>


Best regards,
Pero
the Telerik team
Browse the vast support resources we have to jumpstart 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
Stuart Hemming
Top achievements
Rank 2
answered on 18 Nov 2010, 06:19 PM
Pero,

A good, well explained response.

Nice one.

-- 
Stuart
0
Alex
Top achievements
Rank 1
answered on 17 Feb 2011, 07:31 PM
Sorry to piggyback on this older thread, but I felt this question was kind of relevant since I'm having similar issues as described above. My difference is that I'm trying to change the icon in the code behind.  So I have something like:

Public Sub UpdateButton()
   button1.Icon.PrimaryIconUrl = "~/Images/image1.png"
End Sub

How do I get it to update the icon dynamically?  I've searched all over your website for an example of this being done and couldn't really find any...
0
Pero
Telerik team
answered on 22 Feb 2011, 08:07 PM
Hi Alex,

I am not sure that I fully understand your scenario. Updating the PrimaryIconUrl on the server changes the primary icon on the button as expected. I have attached a code sample that shows this.
If you still cannot resolve the issue, please open a new support ticket and send us a demo project that will help us reproduce the problem locally.

Kind regards,
Pero
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
Luke
Top achievements
Rank 1
answered on 11 Apr 2011, 11:04 PM
Good.
0
Bruce Mendonza
Top achievements
Rank 1
answered on 30 May 2011, 02:07 PM
Pero,

In my situation the icon does not appear on page load. Once I hover or mouse out the icon then appears.

The path is correct (~/images/xxx.png) and it is being displayed when I mouseout of the button

How can I get the icon to display correctly when the page is loaded? (im using version 2011.1.519.35)
0
Pero
Telerik team
answered on 31 May 2011, 09:45 AM
Hi Bruce,

I tested the RadButton control by specifying a primary icon with a path relative to the root directory and everything worked OK. Would you please open a new support ticket and send us a runnable project that demonstrates your problem, and we will do our best to help you?

Greetings,
Pero
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
Bruce Mendonza
Top achievements
Rank 1
answered on 31 May 2011, 10:14 AM
Yes I can also get it to work if i create a new solution with nothing on the page except the icon button.

But when it fails, it is on a complex page with many controls, telerik and others. I cant send you this project, obviously.

Is there anyting that is known to you, that can cause this behaviour (icon not appearing on page load, but does appear after hover event fired), any info you guys have would greatly help in my trying to find the conflict causing this behaviour.
0
Pero
Telerik team
answered on 31 May 2011, 12:00 PM
Hi Bruce,

Would it be possible to give us access to a live URL of the page where the error is seen? Another thing you could try is mockup the folder structure of the project, and see if you could reproduce the problem.
The problem with the missing icon might be caused by a global CSS that gets applied to the element that holds the icon. Try turning off the styles applied to the icon with FireBug in Firefox or IE dev toolbar for IE, until the icon is shown.

Best wishes,
Pero
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
Bruce Mendonza
Top achievements
Rank 1
answered on 31 May 2011, 12:05 PM
No, unfortunately its not available to the public.

Thanks for the info - I will let you know the solution once I have it all resolved.
0
Chris
Top achievements
Rank 1
answered on 16 Jun 2011, 02:13 PM
I'm seeing the same behaviour as Bruce.
I'm creating the button controls server side and on Page Load the images do not show. As soon as I hover over them both the hover image and then the original image will show just fine. A simple client side test of the button control shows it working fine but in my application the images are not showing on load.

My application has a series of Toggle Buttons above a RadSchedule and the buttons turn on and off groups of resources. My code is below (note: this runs inside a loop with dictKey being the iteration) The images are stubs for now.

RadButton rb = new RadButton();
rb.ID = dictKey;
rb.ButtonType = RadButtonType.ToggleButton;
rb.ToggleType = ButtonToggleType.CheckBox;
rb.AutoPostBack = true;
rb.Width = Unit.Pixel(32);
rb.Height = Unit.Pixel(16);
 
RadButtonToggleState rbtsA = new RadButtonToggleState();
rbtsA.ImageUrl = "~/images/icons/Bug.png";
rbtsA.HoveredImageUrl = "~/images/icons/Next.png";
rbtsA.Selected = true;
 
RadButtonToggleState rbtsB = new RadButtonToggleState();
rbtsB.ImageUrl = "~/images/icons/Voice.png";
rbtsB.HoveredImageUrl = "~/images/icons/Lower3rd.png";
 
rb.ToggleStates.Add(rbtsA);
rb.ToggleStates.Add(rbtsB);
rb.Click += new EventHandler(rb_Click);
 
pnl_buttons.Controls.Add(rb);
 
0
Chris
Top achievements
Rank 1
answered on 16 Jun 2011, 02:31 PM
In true "AHA" style as soon as I correctly pathed the images they worked.
My code is in a web control and contrary to what I wrote above I was referencing them from the "~/images" root.
Works just fine. 
0
Philip
Top achievements
Rank 1
answered on 30 Jun 2011, 11:49 AM
Hello!

I've encountered the same problem. The RadButton is placed within a user control. Although I use a relative path like ~/Icons/search.png the first time the button ist shown everything is fine. Looking at source code I can see that the URL is resolved correctly. But when I hover the button (or leave it after that) the URL is replaced with an unresolved URL (from PrimaryIconUrl). Is think this is not the desired behavior ;-)

Here is the aspx code.

<telerik:RadButton ID="RadButton1" runat="server">
    <Icon PrimaryIconUrl="~/Icons/search.png" PrimaryHoveredIconUrl="~/Icons/search-hover.png" />
</telerik:RadButton>

Greetings
Phil

EDIT: I revently noticed, that this behavior only occures when using the Visual Studio Development Server. Using my local IIS everything ist fine. Strange....
0
Pero
Telerik team
answered on 05 Jul 2011, 06:50 AM
Hello Phil,

Would you please provide a sample project with the same file structure, so we can try to reproduce the problem locally? I tested your code on my machine, but everything is working correctly.
Please note that you need to open a new support ticket, to be able to attach files different than pictures.

Greetings,
Pero
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
Nick
Top achievements
Rank 1
answered on 23 Aug 2011, 12:39 PM
I don't know if this helps anyone, but I just ran into this problem myself with the icon disappearing after mouseover in a user control. Keep in mind what your actual "root" directory is pointing to. In my case, I was developing a DNN module and was trying to use "~/Images/icon.png" whereas the actual path should have been "~/DesktopModules/MyDNNModule/Images/icon.png" because I was mistakenly *thinking* that the root started at the "MyDNNModule" directory. Something like this might also be a similar case with the last poster about why it works on his IIS server but not in his dev environment -- different directory structure maybe?. Don't know if this might be a slight oversight for anyone else.
0
Johny
Top achievements
Rank 1
answered on 27 Feb 2012, 05:39 PM
If the xxxImageUrl starts with : ".." or "~" or "/" the button image disappears on mouseover. If the url starts directly with a directory name like xxxImageUrl = "Images/test.png" everything is ok. Seems to me like a bug while making some kind of operation with image's path.
0
Slav
Telerik team
answered on 01 Mar 2012, 09:05 AM
Hello Johny,

I tested the described behavior, but I wasn't able to reproduce it. You can find attached a screen capture, as well as my test page. Please check them and verify if there are differences in the setup or if I am missing something.

Note that currently I am mostly guessing as to what your setup is and I will need reliable steps to reproduce the problem so that I can assist you in resolving it.

Kind regards,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Button
Asked by
Gary Meagher
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Gary Meagher
Top achievements
Rank 1
Pero
Telerik team
Stuart Hemming
Top achievements
Rank 2
Alex
Top achievements
Rank 1
Luke
Top achievements
Rank 1
Bruce Mendonza
Top achievements
Rank 1
Chris
Top achievements
Rank 1
Philip
Top achievements
Rank 1
Nick
Top achievements
Rank 1
Johny
Top achievements
Rank 1
Slav
Telerik team
Share this question
or