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

[Solved] _RowDrop Not Being Called

1 Answer 65 Views
Grid
This is a migrated thread and some comments may be shown as answers.
tim
Top achievements
Rank 1
tim asked on 31 Aug 2009, 02:31 PM
On the aspx page i have:

<telerik:RadGrid ID="grdAvailActions" runat="server" Width="200px" OnRowDrop="grdAvailActions_RowDrop" AllowMultiRowSelection="false" PageSize="30" OnNeedDataSource="grdAvailActions_NeedDataSource" GridLines="None">
.
.
.

and on the code behind I have:

protected void grdAvailActions_RowDrop(object sender, GridDragDropEventArgs e)
    {
.
.
.   

grdAvailActions_RowDrop is not being called when I drag an item.  What's up with this?






1 Answer, 1 is accepted

Sort by
0
Mira
Telerik team
answered on 02 Sep 2009, 05:24 PM
Hi Tim,

In order to enable drag and drop of grid items, you need to set the following two boolean grid properties to true:
 <ClientSettings AllowRowsDragDrop="true"
        <Selecting AllowRowSelect="True" /> 
</ClientSettings>  
For more information please check out the following links:
Items Drag-and-drop demo
Drag and drop of grid items help topic

If you have done this and your problems persist, please provide more information on your scenario or open a formal support ticket and attach a small working project illustrating the problem and we will debug it locally and get back to you with our findings.

Best wishes,
Mira
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Grid
Asked by
tim
Top achievements
Rank 1
Answers by
Mira
Telerik team
Share this question
or