Files
SAFEKISO/safekiso-server/modules/base/wwwroot/admindek/pages/foo-table/js/foo-table-custom.js
2026-04-07 14:50:23 +09:00

12 lines
224 B
JavaScript

'use strict';
$(document).ready(function() {
$('.table').footable({
"paging": {
"enabled": true
},
"sorting": {
"enabled": true
}
});
});