I have a very simple json object like the following:

({
"people": [
{
"f_name": "john",
"l_name": "doe",
"sequence": "0",
"title" : "president",
"url" : "google.com",
"color" : "333333",
},
{
"f_name": "michael",
"l_name": "goodyear",
"sequence": "0",
"title" : "general manager",
"url" : "google.com",
"color" : "333333",
}]
})

Of course there are more records but I kept it to two records for the purpose of keeping things simple.

Now that this is returned from my server side code, I run a jquery.each function to form the necessary html and output the result.

Right now what I am doing is sending an ajax call to the server containing my sort info .. e.g. "Title DESC" and re-run an sql query to return the new resultset. But I want to avoid this and use jquery to sort the resulting json to prevent server roundtrips and multiple database access.

how can I achieve this using jquery?

link|improve this question

79% accept rate
Just FYI... you can use any tutorial on the internet about javascript array sorting and it will apply directly to your scenario since JSON is simply a javascript object/array. JS makes no differentiation between objects and arrays since everything is basically an object in JS anyways. :-) – KyleFarris May 19 '09 at 17:57
feedback

3 Answers

up vote 7 down vote accepted
jQuery.fn.sort = function() {  
    return this.pushStack( [].sort.apply( this, arguments ), []);  
};  

 function sortLastName(a,b){  
     if (a.l_name == b.l_name){
       return 0;
     }
     return a.l_name> b.l_name ? 1 : -1;  
 };  
  function sortLastNameDesc(a,b){  
     return sortLastName(a,b) * -1;  
 };
var people= [
{
"f_name": "john",
"l_name": "doe",
"sequence": "0",
"title" : "president",
"url" : "google.com",
"color" : "333333",
},
{
"f_name": "michael",
"l_name": "goodyear",
"sequence": "0",
"title" : "general manager",
"url" : "google.com",
"color" : "333333",
}]

sorted=$(people).sort(sortLastNameDesc);
link|improve this answer
See my adaptation of Bill Richards code. It's sorting json array based on last name in descending order. The sort callback can be generalized by passing the field name in constructor of function. – Tahir Akhtar May 19 '09 at 10:35
1  
You have to replace innerHTML with l_name in sortLastName – Magnar May 19 '09 at 10:40
Thanks Magnar. I have edited the answer. – Tahir Akhtar May 19 '09 at 11:58
Just to clarify, my first comment, what I mean is that this code can be further modified to support generic sorting. – Tahir Akhtar May 19 '09 at 11:59
Shouldn't sortLastName() return 0 if a.l_name and b.l_name are equal? Perhaps because of the data, it is unnecessary in this case, but reading the code, I can't help thinking of this: blogs.msdn.com/oldnewthing/archive/2009/05/08/9595334.aspx ... "First of all, your first comparison function clearly violates the requirements for being a comparison function: It must return zero if the two items compare equal." – Grant Wagner May 19 '09 at 20:46
show 2 more comments
feedback

Try this on for elegance and efficiency.

I love my jQuery, but it's not ideal for sorting here, unless you can only use the existing html (you don't have the array handy to do your sorting on). Just write a function that takes the property name as a string and the order (ascending or descending) as a boolean, write a simple comparison function, and use the native js sort() function. This way you don't have to write a separate sorting function for each property:

var people= [
    {
        "f_name": "john",
        "l_name": "doe",
        "sequence": "0",
        "title" : "president",
        "url" : "google.com",
        "color" : "333333",
    }
    // etc
];

function sortResults(prop, asc) {
    people = people.sort(function(a, b) {
        if (asc) return (a[prop] > b[prop]);
        else return (b[prop] > a[prop]);
    });
    showResults();
}

Then:

sortResults('l_name', true);

Play with a working example here.

link|improve this answer
Great Job, it is helped me a lot. – manny Mar 7 at 14:15
Thanks, this one is fast and efficient! +1 – Mr. Smith Mar 26 at 7:37
feedback

You might want to try a variation of this:

http://www.wrichards.com/blog/2009/02/jquery-sorting-elements/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.