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

[Solved] skins & scrollbars in IE

4 Answers 189 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
debbie f
Top achievements
Rank 1
debbie f asked on 15 May 2008, 06:03 PM
I'm using a combobox with telerik skin for filtering in my radgrid.  Using IE 7, each combobox shows vertical & hortizonal scrollbars whether they are necessary or not.  I am setting the dropdownlistwidth property that should ensure my users don't have to scroll - the horizontal scroll shows up no matter what.  Also, the vertical scroll always shows up always hiding the last item in the list - even when the list only has 2 items. 

The same code works perfectly in FF, so I'm sure it's a css problem in the skin.  I've tried a few other skins in IE and still get the weird scrolling.  Any chance this is any easy fix in the css?  I plan to create a custom skin so hopefully this is an easy item to address. 

4 Answers, 1 is accepted

Sort by
0
Rosi
Telerik team
answered on 16 May 2008, 08:32 AM
Hello Debbie ,

I suggest that you  provide us with a live url and/or open a support ticket and send us a simple and running project illustrating the problem. We will test it locally and provide you with more specific instructions.

Also, you can see that a  similar problem with horizontal scrollbar does not appear with our online example- http://www.telerik.com/DEMOS/ASPNET/Prometheus/Controls/Examples/Integration/GridComboAjax/DefaultCS.aspx?product=grid .

Regards,
Rosi
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
debbie f
Top achievements
Rank 1
answered on 16 May 2008, 03:51 PM
Actually, you can make it happen with your sample code.  Set the width to less than the dropdownwidth and you will see it happen.  For an extreme example, I set Width="25px" DropDownWidth="250px" for the sample code referenced and you will see both horizontal/vertical bars appear.  In my project, FF handles the dropdowns much better than IE - with shorter lists its not truncating the view of the last item or putting in the horizontal scrollbars.

I have several grids that show an icon for yes/no (which is very small) so the width the filter radcombobox is tiny.  But I make the dropdownwidth much larger so you can actually read the text.  I would just like to see all of the items in a listbox when it is so short.


0
Rosi
Telerik team
answered on 17 May 2008, 07:45 AM
Hi Debbie,

Please use the following css style in your aspx page and let us known how it goes:
<style type="text/css">  
.RadComboBoxDropDown_Vista .rcbScroll   
{  
overflow-x:hidden!important;  
}  
 
</style> 

Kind regards,
Rosi
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
debbie f
Top achievements
Rank 1
answered on 19 May 2008, 03:11 PM
Yep, that did it - thanks so very much!
Tags
ComboBox
Asked by
debbie f
Top achievements
Rank 1
Answers by
Rosi
Telerik team
debbie f
Top achievements
Rank 1
Share this question
or