Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8558647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:51:36+00:00 2026-06-11T15:51:36+00:00

I am using the ENUM sorting routine found at http://datatables.net/plug-ins/sorting . I would like

  • 0

I am using the ENUM sorting routine found at http://datatables.net/plug-ins/sorting. I would like to reuse that same function to sort another list outside of the DataTables plug-in (basically sorting a SELECT element on the same page as the DataTable). I want to avoid having to copy-and-paste (and maintain two sets of business rules) the features of the sort function.

For example, if this is the “plug-in” I’m using for DataTables:

jQuery.extend(jQuery.fn.dataTableExt.oSort, {
  "status-enum-pre": function (a) {
    switch (a) {
      case "Assigned": return 1;
      case "Contacted": return 2;
      case "Meeting Set": return 3;
      case "Closed": return 4;
      default: return 5;
    }
  },

  "status-enum-asc": function (a, b) {
    return ((a < b) ? -1 : ((a > b) ? 1 : 0));
  },

  "status-enum-desc": function (a, b) {
    return ((a < b) ? 1 : ((a > b) ? -1 : 0));
  }
});

How can I re-use that function to sort the following select list?

<select>
  <option value="Contacted">Contacted</option>
  <option value="Assigned">Assigned</option>
  <option value="Closed">Closed</option>
  <option value="Meeting Set">Meeting Set</option>
</select>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:51:37+00:00Added an answer on June 11, 2026 at 3:51 pm

    Obtain the required sort function from the jQuery.fn.dataTableExt.oSort property, and then pass it to Array#sort, which receives a comparator function. For example, to sort a select using status-enum-asc, you’d need:

    // Plugin sort functions
    var sortFn = jQuery.fn.dataTableExt.oSort["status-enum-pre"];
    var sortDirFn = jQuery.fn.dataTableExt.oSort["status-enum-desc"];
    
    // Sort
    var options = $("select option");
    options.sort(function(a,b) {
        return sortDirFn(sortFn(a.text), sortFn(b.text));
    });
    
    // Empty and append sorted options
    $("select").empty().append(options);
    

    DEMO.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found a forum with this subject. Using enum as id But I couldn't
I have a combobox that is bound to an enum using the following code:
The application retrieve window handles, using Enum* routines. It happens that in the while
I am using an enum singletom pattern like this: public enum LicenseLoader implements ClientLicense
Why are people always using enum values like 0, 1, 2, 4, 8 and
I have a contant list declared in java using enum type, that must appears
Using Visual Studio 2010 .Net Framework 4 C# Linq to Entities Issue I would
I'm using std::error_code and have a bunch of error's defined (using enum class) and
I have a database table using an enum. This is already working with hibernate
I want to convert an string to an enum type using TValue, I googled

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.