My request/issue is simple. I have a radTreeView nested into the radComboBox. With this, I am using a custom skin with an over-written "overflow-x: hidden !important" on CSSClass ".RadComboBoxDropDown_MinExpo .rcbScroll". My request/issue is, in the browser IE 7; the scrollbar is not responding to setting the postion to the top. I have tried implementing javascript on "onClientDropDownOpened" but scrollTop, doScroll(), scroll() and scrollTo are not effective; even with a "setTimeout" event . A normal ComboBoxDropDown without the extra width set is setting the scroll position correctly. Any thoughts on how to get the scrollbar position in IE to the top?
Here is my settings reference if you need it.
Here is my settings reference if you need it.
<
telerik:RadComboBox ID="ddlProductCategory" runat="server" Height="140px" Width="215px" DropDownWidth="450px"
ShowToggleImage="True" Skin="MinExpo" EnableEmbeddedSkins="false" Style="vertical-align: middle;">
<ItemTemplate>
<div id="div1">
<telerik:RadTreeView runat="server" ID="radCheck" OnLoad="PopPCNodes_Load" OnClientNodeClicking="nodeClicking"
Skin="WebBlue">
</telerik:RadTreeView>
</div>
</ItemTemplate>
<Items>
<telerik:RadComboBoxItem Text="All Product Categories" Value="0" />
</Items>
</telerik:RadComboBox>