or
Asynchronous fast loading, somthing like the "Client binding 1 millinon..." example.
I also need sorting, only read, no update or insert.
And example on this, preferly with webservice code C#.
Thanks!

void OnDragInfo(object sender, DragDropEventArgs e)
{
if (e.Options.Status == DragStatus.DragComplete) {
e.Handled = true;
}
}
void OnDragQuery(object sender, DragDropQueryEventArgs e)
{
if (e.Options.Status == DragStatus.DragQuery)
{
e.Options.ArrowCue = RadDragAndDropManager.GenerateArrowCue();
}
}
