-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample3.js
More file actions
116 lines (113 loc) · 2.38 KB
/
Copy pathexample3.js
File metadata and controls
116 lines (113 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
$(document).ready(function () {
var columnDefs = [
{
data: 'id',
title: 'Id',
type: 'readonly',
},
{
data: 'name',
title: 'Name',
},
{
data: 'position',
title: 'Position',
},
{
data: 'office',
title: 'Office',
},
{
data: 'extension',
title: 'Extn.',
},
{
data: 'startDate',
title: 'Start date',
},
{
data: 'salary',
title: 'Salary',
},
];
var myTable;
var loadUrl = './mock_svc_load.json';
// Static JSON simulates a successful save. Production code must use a write endpoint.
var saveUrl = './mock_svc_ok.json';
myTable = $('#example').DataTable({
rowId: 'id',
pagingType: 'full_numbers',
ajax: {
url: loadUrl,
// The response is a JSON array rather than an object with a data property.
dataSrc: '',
},
columns: columnDefs,
layout: { topStart: 'buttons' },
select: 'single',
responsive: true,
altEditor: true, // Enable altEditor
buttons: [
{
text: 'Add',
name: 'add', // do not change name
},
{
extend: 'selected', // Bind to Selected row
text: 'Edit',
name: 'edit', // do not change name
},
{
extend: 'selected', // Bind to Selected row
text: 'Delete',
name: 'delete', // do not change name
},
{
text: 'Refresh',
name: 'refresh', // do not change name
},
],
onAddRow: function (editor, values, success, error) {
values.id =
Math.max(
0,
...editor
.api()
.rows()
.data()
.toArray()
.map(function (row) {
return Number(row.id) || 0;
})
) + 1;
$.ajax({
url: saveUrl,
type: 'GET',
success: function () {
success();
},
error: error,
});
},
onDeleteRow: function (editor, values, success, error) {
$.ajax({
url: saveUrl,
type: 'GET',
success: function () {
success();
},
error: error,
});
},
onEditRow: function (editor, values, success, error) {
$.ajax({
url: saveUrl,
type: 'GET',
success: function () {
success();
},
error: error,
});
},
});
});