“Закажите DataTable” Ответ

Закажите DataTable

$(document).ready(function() {
    $('#example').DataTable( {
        "order": [[ 3, "desc" ]]
    } );
} );

Таблица сортировки DataTable

//when using thymeleaf

$(document).ready(function() {
    $('#example').DataTable( {
        "order": [
        	[0, "desc"]
        ]
    } );
} );
urban

Сортировать DataTable C#

Datatable.DefaultView.Sort = "Preferance ASC"; 
Light Lizard

Столбец DataTable Get Order

var table = $('#example').DataTable();

var order = table.order();
alert( 'Table is ordered by column: ' + order[0][0] + ', direction:' + order[0][1]);

var title = table.column(order[0][0]).header();
alert( 'Ordering column title: ' + $(title).html() );
Prickly Puffin

Ответы похожие на “Закажите DataTable”

Вопросы похожие на “Закажите DataTable”

Больше похожих ответов на “Закажите DataTable” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования