I'm using a RadGrid with drag & drop (using the DragDropColumn) to move the items of a detail table around (even between items on the master table). My problem is that when the row is accidentally dragged into the expand/collapse column of the master table, the eventArgs in OnRowDrop (server-side) don't tell me where it was dropped.
e.DestDataItem is null
e.HtmlElement is an empty string
e.DestinationTableView is the master table (not null, but not informative unless something else gets set there).
What I want is to be able to figure out which detail table row I'm next to. Failing that, I'd at least like to be able to tell which master table row I'm beneath so that I can add the item to the top of that detail table.
I'd appreciate any assistance in figuring this out.
--Christina Noel
e.DestDataItem is null
e.HtmlElement is an empty string
e.DestinationTableView is the master table (not null, but not informative unless something else gets set there).
What I want is to be able to figure out which detail table row I'm next to. Failing that, I'd at least like to be able to tell which master table row I'm beneath so that I can add the item to the top of that detail table.
I'd appreciate any assistance in figuring this out.
--Christina Noel