Hi.
I have reproduced the row drag drop demo between 2 grids. I can drag drop items from girdA to gridB. The problem arises when I check the enable scrolling checkbox in the smart tag of the gridB. The client side event OnRowDropping is fired but not OnRowDrop on server side (Postback is not called either). If I uncheck the scrolling, everything is fine again.
I have reproduced the row drag drop demo between 2 grids. I can drag drop items from girdA to gridB. The problem arises when I check the enable scrolling checkbox in the smart tag of the gridB. The client side event OnRowDropping is fired but not OnRowDrop on server side (Postback is not called either). If I uncheck the scrolling, everything is fine again.
| <telerik:RadGrid ID="gridA" runat="server" |
| CssClass="style2" GridLines="None" |
| OnRowDrop="gridColumns_RowDrop" |
| OnNeedDataSource="gridA_NeedDataSource" |
| AllowMultiRowSelection="True"> |
| <MasterTableView DataKeyNames="positionReport" AutoGenerateColumns="False" |
| ShowHeader="False"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="namereportFR" UniqueName="column"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings AllowRowsDragDrop="True"> |
| <Selecting AllowRowSelect="True" /> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" /> |
| <ClientEvents OnRowDropping="onRowDropping" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
| <telerik:RadGrid ID="gridB" runat="server" |
| CssClass="style1" GridLines="None" |
| OnRowDrop="gridColumns_RowDrop" |
| OnNeedDataSource="gridB_NeedDataSource" |
| AllowMultiRowSelection="True" AutoGenerateColumns="False" |
| ShowHeader="False"> |
| <MasterTableView DataKeyNames="positionReport"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="namereportFR" UniqueName="column"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings AllowRowsDragDrop="True"> |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |
| </telerik:RadGrid> |