Completed
Last Updated: 15 Oct 2014 10:16 by ADMIN
ADMIN
Aneliya Petkova
Created on: 12 May 2014 08:57
Category: ComboBox
Type: Bug Report
3
FIX: In Lightweight render mode, when DropDownAutoWidth is enabled, the RadComboBox dropdown has 2 vertical scrollbars and 1 horizontal.
In the meantime you can use the following css workaround that will fix the issue: 

.rcbAutoWidthResizer .rcbScroll {
	overflow: visible !important;
}
 
/*To target IE 6, 7 and 8*/
@media \0screen\,screen\9 {
	.rcbAutoWidthResizer .rcbScroll {
		overflow: auto !important;
	}
}
 
/*To target IE 9 and 10*/
@media screen and (min-width:0\0) {
	.rcbAutoWidthResizer .rcbScroll {
		overflow: auto !important;
	}
}
0 comments