mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-06 12:11:45 -05:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
$(function () {
|
|
$(document).ready(function() {
|
|
$('.datatable').DataTable({
|
|
// ajax: ...,
|
|
stateSave: true,
|
|
autoWidth: false,
|
|
pagingType: 'full_numbers',
|
|
"lengthMenu": [[25, 50, 100, -1], [25, 50, 100, "All"]]
|
|
});
|
|
});
|
|
});
|
|
|
|
|