Sorting an Observable Array in Knockout JS

Sorting an Observable Array in Knockout JS

Hi All, I'm going to explain to sorting an observable array in knockoutJS

Today's, I have a requirement for sorting an observable array with respect to the date as give below example.

The below code sample are working most of the browsers (IE, Mozilla, and Firefox etc.)

In the 1st step, code-sample for knockout Js

Example :

<script type="text/javascript" lang="ja">
    // This observable-array contains to 3 user objects.
    var userDetails = ko.observableArray([
        { name: "Anil Singh", date: "10/03/1984" },
        { name: "Sunil Singh", date: "05/04/1990" },
        { name: "Sushil Singh", date: "13/06/1999" }
    ]);

    //sort observable array to date wise entries.
    userDetails .sort(function (l, r) {
        return (Date.parse(l.date) == Date.parse(r.date) ? 0 : 
                                               (Date.parse(l.date) > Date.parse(r.date) ? -1 : 1))
    });

</script>



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Sorting an Observable Array in Knockout JS Sorting an Observable Array in Knockout JS Reviewed by Unknown on 10:31 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^