Thanks,
Nate
22 Answers, 1 is accepted
I have reproduced the bug, and it occurs only when hosting RadGridView in a WinForms application. I managed to fix it in our development version. If that is a blocking issue for you, please open a separate support ticket to request an unofficial build that contains the fix.
Thanks for the report! I have updated your Telerik points
Regards,
Hristo Deshev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Thanks,
Nate
We have recently had our last release (December 17th) and the next one is a couple of months away. If that is inconvenient for you may open a support ticket and request an unofficial build.
Kind regards,
Milan
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Any ideas as to the cause of this error?
Thanks
Ben
This is another bug in our drag and drop. It is fixed and the new build is attached.
Kind regards,
Jordan
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

System.ArgumentNullException occurred
HResult=-2147467261
Message=Value cannot be null.
Parameter name: otherVisual
Source=PresentationCore
ParamName=otherVisual
StackTrace:
at System.Windows.Media.Visual.FindCommonVisualAncestor(DependencyObject otherVisual)
at System.Windows.Media.Visual.TransformToVisual(Visual visual)
at Telerik.Windows.Controls.UIElementExtensions.TransformToVisualSafe(UIElement target, UIElement element) in c:\TB\221\WPF_Scrum\Release_WPF\Sources\Development\Core\Controls\Common\UIElementExtensions.cs:line 17
InnerException:
Thank you for the feedback.
We were not able to reproduce the reported exception. Could you send us more details about your implementation or a sample project which shows the problem?
Kind regards,
Yordanka
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

I've got the same error today when im trying to sort a grid. My application is "hosting RadGridView in a WinForms application"
Any idea how to fix it?
Could you test your solution with the latest official version Q2 2013? Please let me know if the problem still persists.
Regards,
Yordanka
Telerik
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

The problem has been fixed with Q2 2013 official version. Please give it a try and let us know if you find any problems.
Regards,
Yordanka
Telerik
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>

It works well with new version of dll's

Before column reordering i have a perfect grid with standart style (Windows8). But after the 2nd reorder the style changed to OfficeBlack.
<telerik:RadGridView Grid.Row="1"
Margin="0"
ItemsSource="{Binding LIST}"
IsFilteringAllowed="True"
SelectionMode="Extended"
CanUserResizeColumns="True"
CanUserReorderColumns="True"
AutoGenerateColumns="False"
SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
FilteringMode="Popup"
DataLoaded="List_DataLoaded"
DistinctValuesLoading="OnDistinctValuesLoading"
>
<telerik:RadGridView.Columns>...

Could you tell me how can i rewrite Column Drag and Drop template for grid view?
Unfortunately this is an issue we have never encountered before. May I ask you to share a bit more info about the scenario? Do you have any custom styles? A sample project that isolates the problem would be very helpful!
Thank you in advance!
Nik
Telerik
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>

I almost fixed issue with reordering, but i still need help to rewrite standard DragAndDrop Column style. Could you tell me what template i should change?
Can you clarify what exactly do you mean by DragAndDrop Column style?
Thank you in advance!
Nik
Telerik
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>

like on the picture (for treeView) http://www.telerik.com/help/silverlight/media/RadTreeView-DragDrop-VisualElements.png
Unfortunately we could see DragPreview and DropPreview Line
Unfortunately there is no way to do this out of the box.
The GrdView and TreeView are quite different and provide different level of User experience.
Nevertheless there is a way to achieve what you want.
To change the DragVisual, you need to handle the DragInitialize event with HandledEventsToo set to true, where you can set the DragVisual to whatever you need it to be.
As to the PreviewDropLine, you can see how this can be done here.
Hope this helps!
Nik
Telerik
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>

I can see its only for first time reordering.
PS I disabled all my styles and used everything by default.
PS I dont know how to attach zip file, so this is the link to http://www13.zippyshare.com/v/5204300/file.html
I took a look at your project, and after some debugging found out what goes wrong.
The DragVisual in WPF is contained in a WPF window, which is a new instance for every drag operation.
The thing is, that for some reason, once a WPF window has been opened in your application, you can never open another one. I trust this is an issue connected with the WinForms host application, that goes beyond our scope.
I am attaching a modified version of your project where you can see the problem I am referring to clearly.
Hope it helps!
Nik
Telerik
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>

Thanks for the clarification and good example. It looks weird and I guess we will spend lot of time to fixed it :(
And thank you so much for all your help I really appreciate it.