JS table sorted by a column

Source: Internet
Author: User

The essence is that the object is sorted by an attribute

This takes the form of JSON data returned in the first order

/* Sort */
function Getsortfun (order, SortBy) {
var Ordalpah = (Order = = "ASC")? ">": "<";
var sortfun = new Function ("A", "B", "return a." + SortBy + ordalpah + "B." + SortBy + "?) 1:-1 ");
return sortfun;
}

/*

Data returned back to the background

Table is the table that is currently being sorted

SortBy What fields to sort by

Renderfun is a function of rendering tables

*/

Descending
function Sortdown (data,table,sortby,renderfun) {
Data.sort (getsortfun (' desc ', sortby));
Renderfun (Table,data);
};
Ascending
function Sortup (data,table,sortby,renderfun) {
Data.sort (Getsortfun (' ASC ', SortBy));
Renderfun (Table,data);
};

JS table sorted by a column

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.