Вход Регистрация
Файл: Main Website Files/assets/bower_components/datatables-plugins/sorting/alt-string.js
Строк: 31
<?php
/**
 * Sort on the 'alt' tag of images in a column. This is particularly useful if
 * you have a column of images (ticks and crosses for example) and you want to
 * control the sorting using the alt tag.
 *
 *  @name Alt string
 *  @summary Use the `alt` attribute of an image tag as the data to sort upon.
 *  @author _Jumpy_
 *
 *  @example
 *    $('#example').dataTable( {
 *       columnDefs: [
 *         { type: 'alt-string', targets: 0 }
 *       ]
 *    } );
 */

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

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

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