Showing posts with label sort. Show all posts
Showing posts with label sort. Show all posts
Friday, July 15, 2011
Wednesday, September 30, 2009
Sorting Nested Gridview (with UpdatePanels)
Subscribe to:
Posts (Atom)
Solve first, then blog!
var mylist = $('ul'); var listitems = mylist.children('li').get(); listitems.sort(function(a, b) { var compA = $(a).text().toUpperCase(); var compB = $(b).text().toUpperCase(); return (compA < compB) ? -1 : (compA > compB) ? 1 : 0; }) $.each(listitems, function(idx, itm) { mylist.append(itm); });