<cc1:ReorderList id="ReorderList1" runat="server" CssClass="Sortables" Width="400" >
<ItemTemplate>
<div class="sortablelineitem">
<a href="#" class="albmCvr" id="song13">
<img src="/images/plalbumcvr.jpg" alt="Name of Album" class="cvrAlbum" width="10"
height="10" />
Song 1 <span>by</span> Artist 1 </a>
<asp:ImageButton ID="ImageButton13" runat="server" ImageUrl="/images/btn_play_icon.gif"
ToolTip="Play Clip" CssClass="playClip" />
</div>
</ItemTemplate>
<EditItemTemplate>
<h1>WHOA THE ITEM IS BEING DRAGGED!!</h1>
</EditItemTemplate>
<ReorderTemplate>
<div style="width:400px; height:20px; border:dashed 2px #CCC;"></div>
</ReorderTemplate>
<DragHandleTemplate>
<div style="height:15px; width:15px; background-color:Black;"></div>
</DragHandleTemplate>
<EmptyListTemplate>
There are no items in this playlist yet...
</EmptyListTemplate>
</cc1:ReorderList>
</ContentTemplate>
</asp:UpdatePanel>
私のフロントエンドであり、バックエンドでは、データテーブルオブジェクトを取得し、それを非ポストバックの OnLoad にバインドしています...
ReorderList1.DataSource = ds.Tables[1];
ReorderList1.DataBind();
アイテムが並べ替えられた場合、データソースを再度設定する必要がありますか?