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

RadComboBox drugging issue

1 Answer 41 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Ryan Morgan
Top achievements
Rank 1
Ryan Morgan asked on 27 Dec 2010, 05:33 PM
Hi Guys,

I have a problem with radComboBox control during drugging the radwindow. When i expand radcombobox  and then drug( move ) radwindow, expanded items are not moving with window, they are glued, you can see it on the attached screenshot.  I created small test application for reproducing this issue, here is my code:
<telerik:RadScriptManager runat="server" ID="radManager">
</telerik:RadScriptManager>
<telerik:RadWindow runat="server" ID="rd" VisibleOnPageLoad="true">
<ContentTemplate>
<div style="width: 200px; height: 200px;">
<telerik:RadComboBox runat="server" ID="radCombo">
<Items>
<telerik:RadComboBoxItem Text="Item 1" />
<telerik:RadComboBoxItem Text="Item 2" />
<telerik:RadComboBoxItem Text="Item 3" />
<telerik:RadComboBoxItem Text="Item 4" />
<telerik:RadComboBoxItem Text="Item 5" />
</Items>
</telerik:RadComboBox>
</div>
</ContentTemplate>
</telerik:RadWindow>


Steps to reproduce:
1) Expand the radcombobox control,
2) Move the radwindow

Can somebody help me with it?
Thanks in advance!

1 Answer, 1 is accepted

Sort by
0
Simon
Telerik team
answered on 28 Dec 2010, 10:12 AM
Hi Ryan Morgan,

In this case you could close the drop down manually on the client-side DragStart event of the RadWindow:
function onDragStart() {
    var comboBox = $find("RadComboBox1");
    comboBox.hideDropDown();
}

I hope this helps.

All the best,
Simon
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
ComboBox
Asked by
Ryan Morgan
Top achievements
Rank 1
Answers by
Simon
Telerik team
Share this question
or