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

[Solved] Drag and Drop does not work when Scrollable is set

1 Answer 80 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Nick
Top achievements
Rank 1
Nick asked on 15 Mar 2011, 06:26 PM
I have found that drag and drop does not work properly when I initialize a Telerik MVC Grid with .Scrollable().
I can drag my item but as soon as the item leaves the grid the clone disappears !! ..
Is there a work around,bug fix, or way to stop this happening ?

1 Answer, 1 is accepted

Sort by
0
Nick
Top achievements
Rank 1
answered on 17 Mar 2011, 04:11 PM
For anyone having a similar issue you can use appendTo in JQuery when initialising the draggable


  $(".dragDoc").draggable(
                {
                    helper: 'clone',
                    zIndex: 99999,
                    appendTo: 'body'
                }
            );        
Tags
Grid
Asked by
Nick
Top achievements
Rank 1
Answers by
Nick
Top achievements
Rank 1
Share this question
or