My problem has a long description, hopefully the subject made enough sense. :) I have a datepicker control in the itemtemplate of the combobox, when the popup calendar goes away, the Combobox drop down gets a scroll bar. This only happens in chrome.
The RadComboBox is created as
I haven't had time to create a minimal project to dig into it more, but thought I'd post to see if there was any quick fixes or known problems. I'm running the latest release of Telerik and Chrome is 5.0.375.125.
Thanks
<telerik:RadComboBox ID="cboDateRange" runat="server" width="175px" DropDownWidth="325px" CloseDropDownOnBlur="False" Font-Bold="True" AllowCustomText="false"> <ItemTemplate> <asp:Label ID="lblDateRange" runat="server" Text="Date Range" Font-Bold="true"></asp:Label><br /> <div id="divStartDateSelected" class="divFloatLeft"> <telerik:RadDatePicker ID="dateStartDate" runat="server" Width="90px" > <DateInput SelectionOnFocus="SelectAll"> </DateInput> <Calendar ShowRowHeaders="false"></Calendar> </telerik:RadDatePicker> </div> <div class="divFloatLeft"> <asp:Label ID="lblDateRangeDash" runat="server" Text="-"></asp:Label> </div> <div id="divEndDateSelected" class="divFloatLeft"> <telerik:RadDatePicker ID="dateEndDate" runat="server" Width="90px"> <DateInput SelectionOnFocus="SelectAll"> </DateInput> <Calendar ShowRowHeaders="false"></Calendar> </telerik:RadDatePicker> </div> </ItemTemplate> <Items> <telerik:RadComboBoxItem Text="" Selected="True" /> </Items></telerik:RadComboBox>I haven't had time to create a minimal project to dig into it more, but thought I'd post to see if there was any quick fixes or known problems. I'm running the latest release of Telerik and Chrome is 5.0.375.125.
Thanks