I have found where is the problem. Problem is in styles.
My code looks like this (This is Serbian Cyrillic)
Header:
%print_script:jquery-dataTables%
%print_style:jquery-dataTables%
<table id="wpfb-data-table-datum-%uid%">
<thead>
<tr><th scope="col">Датум објаве - година/месец/дан</th><th scope="col">Име фајла</th><th scope="col">Опис</th></tr>
</thead>
<tbody>
FOOTER:
</tbody>
</table>
<script type="text/javascript" charset="utf-8">
jQuery(document).ready(function() {
jQuery('#wpfb-data-table-datum-%uid%').dataTable({"oLanguage":
{
"sEmptyTable": "Тренутно нема података",
"sInfo": "од _START_ до _END_ од укупно _TOTAL_ фајлова",
"sInfoEmjQuerypty": "Излистано је 0 од 0 од укупно 0 фајлова",
"sInfoFiltered": "(Приказано од укупно _MAX_ линија)",
"sInfoPostFix": "",
"sInfoThousands": ",",
"sLengthMenu": "Прикажи _MENU_ фајлова",
"sLoadingRecords": "Учитавам",
"sProcessing": "Обрађујем",
"sSearch": "Претражи:",
"sZeroRecords": "Нема порука",
"oPaginate": {
"sFirst": "Прва",
"sLast": "Последња",
"sNext": "Напред",
"sPrevious": "Назад"
},
"oAria": {
"sSortAscending": ": Сортирај растуће",
"sSortDescending": ": Сортирај опадајуће"
}
}
}
);
});
</script>
Problem is in those two lines of code
%print_script:jquery-dataTables%
%print_style:jquery-dataTables%
When I delete those two lines of code I lose all table formatting but my navigation works normal.
Can anyone help?