Row reordering in ASP .NET
Row reordering in ASP .NET
twilightazn
Posts: 5Questions: 2Answers: 0
I'm trying to follow the editor datatables reorder server-side example but am stuck on one small piece for the preRemove. I'm not sure how to write:
$order = $editor->db()
->select( 'audiobooks', 'readingOrder', array('id' => $id) )
->fetch();
in ASP .NET MVC. I'm really just stuck on the 3rd parameter of the Select method. Any help would be appreciated. Thanks!
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
The .NET download package contains all of the examples available on the Editor web-site, but with C# backend code.
Allan
Ahh, I should've checked there. Thanks!