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

Rad combo Drop down list alignment problem

2 Answers 127 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
vairam
Top achievements
Rank 1
vairam asked on 24 Jan 2009, 06:30 AM
Hi
I am having the div in master page

<

body>

 

 

<div class="pagediv">

 

</div></body>

Style.css

.pagediv

{

 

width: 950px;

 

 

top: 10px;

 

 

margin:0 auto 0;

 

}


Inside the div only i am having all the controls.If i use the rad combo the dropdown list of radcombo not align left of the Radcombox  instead of its aligning center of the radcombo.The same problem in Grid filter dropdownlist  If i click any column's filter image the dropdown always coming center of the page only.

If i remove the margin:0 auto 0; from div style its working fine.but i need to place this div center of the page.

what i need to do? 
How can i attach my style sheet or sample application  (if you need) ?

Regards
Vairam

 

 

2 Answers, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 26 Jan 2009, 12:40 PM
Hi Vairam,

Unfortunately, I am not able to replicate the described issue. You can open a support ticket and send us a simple working example illustrating the problem there. Alternatively, you can paste the code in this forum thread.

Best wishes,
Yana
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Evgeny Zyuzin
Top achievements
Rank 1
answered on 20 Jul 2009, 02:11 PM
I have a same issue. but I found one solution. The problem was with position: relative in style of top div

<%@ Page Language="C#"  
    AutoEventWireup="true"%> 
<%@ Register Assembly="Telerik.Web.UI, Version=2008.3.1314.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"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head id="Head1" runat="server"
</head> 
 
<body> 
    <div style="position:relative; width: 1050px; font-size: 0px; margin: 0px auto -55px auto;"
        <form id="form1" runat="server"
             <asp:ScriptManager ID="ScriptManager1" runat="server" EnableHistory="true" EnableSecureHistoryState="false"
            </asp:ScriptManager> 
 
        <telerik:RadComboBox ID="SearchScope" runat="server" Skin="Vista" Width="210px"
            <Items> 
                <telerik:RadComboBoxItem Text="All Sites" Value="all"  /> 
                <telerik:RadComboBoxItem Text="InChilds" Value="childs" /> 
            </Items> 
        </telerik:RadComboBox> 
        </form> 
    </div> 
     
</body> 
</html> 
 
 
 
Tags
ComboBox
Asked by
vairam
Top achievements
Rank 1
Answers by
Yana
Telerik team
Evgeny Zyuzin
Top achievements
Rank 1
Share this question
or