The following markup is used to create a to-do list that
allows the user to reorganize its members by simply moving the individual items
throughout the list.
PostBackOnReorder="false"
DataSourceID="ObjectDataSource1"
CallbackCssStyle="callbackStyle"
DragHandleAlignment="Left"
ItemInsertLocation="Beginning"
DataKeyField="ItemID"
SortOrderField="Priority">
. . .
. . .
CHAPTER 8 ?– USING THE ASP.NET AJAX CONTROL TOOLKIT (PART 2) 193
Property Name Description
CssClass="reorderCue" />
. . .
As you can see, much like many other data-bound controls such as the ASP.NET
DataList control, the ReorderList control has support for ItemTemplate, EditItemplate, and
more, thereby allowing ample flexibility when dealing with lists of data.
Pages:
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280