Newer
Older
task-bldg / src / main / resources / static / js / usertables.js
@haya4 haya4 on 1 Aug 2022 281 bytes OK: TASK画面
$(function() {
  $("#user-table").dataTable({
    // DataTablesを日本語化する
    language: {
      url: "/webjars/datatables-plugins/i18n/ja.json"
    },
    // 各種ボタンを有効化する
    dom: "Bfrtip",
    buttons: ["excelHtml5", "csvHtml5", "print"]
  });
});