Вход Регистрация
Файл: Main Website Files/assets/bower_components/datatables-plugins/sorting/numeric-comma.js
Строк: 52
<?php
/**
 * It is not uncommon for non-English speaking countries to use a comma for a
 * decimal place. This sorting plug-in shows how that can be taken account of in
 * sorting by adding the type `numeric-comma` to DataTables. A type detection 
 * plug-in for this sorting method is provided below.
 * 
 * Please note that the 'Formatted numbers' type detection and sorting plug-ins
 * offer greater flexibility that this plug-in and should be used in preference
 * to this method.
 *
 *  @name Commas for decimal place
 *  @summary Sort numbers correctly which use a common as the decimal place.
 *  @deprecated
 *  @author [Allan Jardine](http://sprymedia.co.uk)
 *
 *  @example
 *    $('#example').dataTable( {
 *       columnDefs: [
 *         { type: 'numeric-comma', targets: 0 }
 *       ]
 *    } );
 */

jQuery.extendjQuery.fn.dataTableExt.oSort, {
    
"numeric-comma-pre": function ( ) {
        var 
= (== "-") ? a.replace( /,/, "." );
        return 
parseFloat);
    },

    
"numeric-comma-asc": function ( a) {
        return ((
b) ? -: ((b) ? 0));
    },

    
"numeric-comma-desc": function ( a) {
        return ((
b) ? : ((b) ? -0));
    }
} );
?>
Онлайн: 2
Реклама