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?
<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?