Hi. I am using RadComboBox control in my project. Previously, the control was in non-editable mode (IsEditable="False") and drop functions worked fine.
<telerik:RadComboBox
IsEditable="True"
IsFilteringEnabled="True"
AllowDrop="True"
ItemsSource="{Binding Type.Items}"
DisplayMemberPath="DocumentId"
Text="{Binding Value, Mode=TwoWay}">
<i:Interaction.Behaviors>
<local:DropTargetBehavior DropCommand="{Binding DropCommand}" />
</i:Interaction.Behaviors>
</telerik:RadComboBox
When I set IsEditable to True then drop functionality has stopped working. In editable mode there is an "Input Area" overlay control and i cannot drop anything to RadComboBox. Can you suggest any working example for dropping something to RadComboBox in editable mode (IsEditable="True")?