I use Backbone.js to display a list of items, like books. After the list is displayed, there are options for sorting users. Therefore, if the user clicks the "Sort by title" or "Sort by author name" button, the list will be sorted on the client side.
window.Book = Backbone.Model.extend({ defaults: { title: "This is the title", author: "Name here" },
What is the best way to accomplish this view using Backbone in the context of the application. Am I using jQuery dom sorter in AppView?
Jhony Fung Aug 10 '11 at 3:01 2011-08-10 03:01
source share