Hi, II have a RadListBox with an attached DragDropBehavior and a custom itemTemplate:
<telerik:RadListBox.ItemTemplate> <DataTemplate> <Grid> <TextBox Text="{Binding Name}" /> </Grid> </DataTemplate></telerik:RadListBox.ItemTemplate>Technically everything works as expected, apart of the fact that reordering elements via drag&drop is nearly impossible.
Replacing the TextBox with a TextBlock fixes the issue but, of course, is not a viable option: the "Name" property should be editable...
Any advice on this?