Bootstrap Icon hozzáadása

This commit is contained in:
2025-03-18 13:12:17 +01:00
parent 8c1966ef4c
commit 9297ff3970
14 changed files with 202 additions and 52 deletions
@@ -39,9 +39,7 @@
{ data: "id" },
{ data: "fullName" },
{ data: null, render: function (data, type, row) {
return `<button class="btn btn-primary edit-btn" data-id="${row.id}">Módosítás</button>
<button class="btn btn-danger delete-btn" data-id="${row.id}">Törlés</button>
`;
return renderActionButtons(row.id);
}}
],
columnDefs: [
@@ -52,7 +50,7 @@
{
"targets": 2,
"className": "text-center",
"width": "15%"
"width": "10%"
}
],