Hello,
I am working on a concept much like in your demo here (http://demos.telerik.com/aspnet-ajax/listview/examples/itemdragdrop/defaultcs.aspx), however, the difference is that instead of Link Buttons for the genre, I have RadListView instead so it looks something like this.
<
RadListView
ID
=
'tracksListView'
></
RadListView
> /* List of all tracks */
<
Repeater
ID
=
'genreRepeater'
> /* List of all Genre */
<
ItemTemplate
>
<
RadListView
ID
=
'genreListView'
OnItemDrop
=
"RadListView_ItemDrop"
>
<
ItemTemplate
> /*List of tracks per Genre */ </
ItemTemplate
>
</
RadListView
>
</
ItemTemplate
>
</
Repeater
>
I've created the server side event for the Item Drop of RadListView however, when I'm ​dragging an item to another RadListView (either tracksListView or genreListView), the e.DestinationHtml on the ItemDrop event shows the ID of the origin.
For example,
The repeater generated 3 genre (pop, love, classic) and when I drag a track from pop to love, the e.DestinationHtml returns the ID of the radlistview of pop.
Please help, thank you.