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

[Solved] Drop down list displaying to right of control

4 Answers 102 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Andrew Sims
Top achievements
Rank 1
Andrew Sims asked on 04 Feb 2010, 02:03 PM
Hi,

I am a new user of Telerik (Still using the evaluation version at the moment, just about to buy licences).

I have one, I guess trivial, problem with the RadComboBox control.  Everywhere it is used in our application, when clicked the list of values appears to the right of the control.  (Please see attached screenshot)

This occurs when the format is auto generated, and also when I code the control manually, eg:

  <telerik:RadComboBox Height="140px" 
                                Width="220px"                                               
                                ID="RadComboBox2" 
                                runat="server" 
                                SelectedValue='<%#Bind("OFFER_STATUS") %>'>
                                 <Items>
                                  <telerik:RadComboBoxItem Text="Active" Value="Active" />
                                  <telerik:RadComboBoxItem Text="Inactive" Value="Inactive" />
                                 </Items>
                            </telerik:RadComboBox>

Could this be a problem in ContentMaster.master, as it happens on every page?  Any hints on how I might debug this would be greatly appreciated.

Thanks!

4 Answers, 1 is accepted

Sort by
0
Kamen Bundev
Telerik team
answered on 04 Feb 2010, 04:22 PM
Hi Andrew,

Can you give more information on the version of Radcontrols for ASP.NET AJAX you're using, in which browser you're reproducing the issue and can you provide a sample project or a live URL where we can reproduce it too? You can submit a General Feedback with a link to this thread and the attachments.

Regards,
Kamen Bundev
the Telerik team

Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Follow the status of features or bugs in PITS and vote for them to affect their priority.
0
Andrew Sims
Top achievements
Rank 1
answered on 05 Feb 2010, 09:02 AM
Hi,

I have submitted details via general feedback.  I get this issue in Chroome, Firefox and IE.

I think my Teleric version is: " Telerik.Web.UI 2009.3.1208.35"

Thanks!

Andy
0
Andrew Sims
Top achievements
Rank 1
answered on 05 Feb 2010, 03:58 PM
Hi,

It seems this issue was related to the way I centered the page, using the following:

<div style="width:994px; margin:0px auto; position:relative">

Taking this out and making the page left aligned solves the problem (i.e. changing it to <div>). 

Now I know the source of the issue i can rebuild my content master to centre in a way that works with this control.

Thanks

Andy.




0
Kamen Bundev
Telerik team
answered on 10 Feb 2010, 12:08 PM
Hi Andrew,

This issue is caused by the position: relative you've set to the container div in the body element, causing RadComboBox to miscalculate its dropdown position. This issue should have been fixed in our internal builds, however you can workaround it by setting margin: 0 to your body tag and to restore the spacing set padding: 5px to the div container.

Regards,
Kamen Bundev
the Telerik team

Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Follow the status of features or bugs in PITS and vote for them to affect their priority.
Tags
ComboBox
Asked by
Andrew Sims
Top achievements
Rank 1
Answers by
Kamen Bundev
Telerik team
Andrew Sims
Top achievements
Rank 1
Share this question
or