Hi,
I have a radgridview which is populated by a LINQ query via Entity Framework by setting the datasource of the grid:
EG: grd.DataSource = query.ToList();
On the form I have two grids with the classic 'Move' button between them. I also want to be able to drag from grid source into grid destination, but the twist is the grids are not the same. The button click works out the logic for the data move (and it works fine), so I want the destination grid to fire the button click when the item is dropped onto it.
Any ideas folks on how to allow dragging from the source grid and also on how to capture the 'drop' event in the destination grid?
Thanks all.