Plugin natural sorting in combination with hidden title search

Plugin natural sorting in combination with hidden title search

elmartino86elmartino86 Posts: 4Questions: 0Answers: 0
edited January 2013 in Plug-ins
Hi, Does anyone know how to achieve the natural sorting plugin in combination with the hidden title search?

Thanks in advance!

Replies

  • elmartino86elmartino86 Posts: 4Questions: 0Answers: 0
    Anybody ?
  • elmartino86elmartino86 Posts: 4Questions: 0Answers: 0
    Nevermind, was very easy :P

    jQuery.extend( jQuery.fn.dataTableExt.oSort, {
    "title-natural-pre": function ( a ) {
    return a.match(/title="(.*?)"/)[1].toLowerCase();
    },

    "title-natural-asc": function ( a, b ) {
    return naturalSort(a,b);
    },

    "title-natural-desc": function ( a, b ) {
    return naturalSort(a,b) * -1;
    }
    } );
This discussion has been closed.