Declined
Last Updated: 27 Jan 2014 10:34 by Elena
Franz
Created on: 04 Mar 2013 11:22
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Dropdown area of RadCombobox inside movable RadWindow won't be moved alongside the rest
If a RadWindow contains a RadComboBox, and the RadWindow allows the "Move" behavior, there exists a rendering problem with all major browsers: If the dropdown area of the RadComboBox is expanded during a move operation of the RadWindow, the dropdown area stays behind while the RadComboBox and the RadWindow are moved.

Steps to reproduce:
1.) Create a new Telerik C# Web Application
2.) Use the code of the attached Default.aspx file
3.) Run the project and follow the instructions of the Default.aspx page

Attached Files:
1 comment
Elena
Posted on: 21 Aug 2013 13:07
You should hide the drop down on window move:

 <telerik:RadWindow Visible="true" Title="Test window" 
	 VisibleOnPageLoad="true" 
	 runat="server" 
	 ID="radwindow" 
	 Behaviors="Move,Close" 
	 Width="300" 
	 Height="50" 
	 OnClientDragStart="hideDropDown">
	<ContentTemplate>
		<telerik:RadComboBox runat="server" ID="combo" Width="100%">
			<Items>
				<telerik:RadComboBoxItem Text="foo" />
				<telerik:RadComboBoxItem Text="bar" />
				<telerik:RadComboBoxItem Text="baz" />
			</Items>
		</telerik:RadComboBox>
	</ContentTemplate>
</telerik:RadWindow>

<script type="text/javascript">
	function hideDropDown(sender, args) {

		var combo = $find("<%= combo.ClientID %>");
		combo.hideDropDown();        
	}
</script>