-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax-popupedit.html
369 lines (336 loc) · 13.6 KB
/
ajax-popupedit.html
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" type="image/ico" href="http://www.sprymedia.co.uk/media/images/favicon.ico">
<title>Using DataTable with Editable plugin - Inline delete with ajax source</title>
<style type="text/css" title="currentStyle">
@import "media/css/demo_page.css";
@import "media/css/demo_table.css";
@import "media/css/demo_validation.css";
@import "media/css/themes/base/jquery-ui.css";
@import "media/css/themes/smoothness/jquery-ui-1.7.2.custom.css";
</style>
<script src="media/js/jquery.min.js" type="text/javascript"></script>
<script src="media/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="media/js/jquery.jeditable.js" type="text/javascript"></script>
<script src="media/js/jquery-ui.js" type="text/javascript"></script>
<script src="media/js/jquery.validate.js" type="text/javascript"></script>
<script src="media/js/jquery.dataTables.editable.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function () {
$('#example').dataTable()
.makeEditable({
aoTableActions: [
{
sAction: "EditData",
sServerActionURL: "UpdateData.php",
oFormOptions: { autoOpen: false, modal: true }
}
],
sUpdateURL: "UpdateData.php",
sAddURL: "AddData.php",
sAddHttpMethod: "GET", //Used only on google.code live example because google.code server do not support POST request
sDeleteURL: "DeleteData.php",
sDeleteHttpMethod: "GET", //Used only on google.code live example because google.code server do not support POST request
aoColumns: [{}, {}, {}, {}, null]
});
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17838786-2']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body id="dt_example">
<div id="container">
<a href="index.html">Home</a>
<a href="http://code.google.com/p/jquery-datatables-editable/wiki/Overview">Wiki</a>
<h1 class="full_width big">
Editable DataTable example - Editing data in the popup window(Beta)
</h1>
<h2>Preamble</h2>
<p>Editable plugin enables you to add "actions" in the table. Action can be Editing columns in the popup.
</p>
<h2>Live example</h2>
<div id="demo">
<form id="formEditData" action="UpdateData.php" title="Update Platforms">
<input type="hidden" name="id" id="id" class="DT_RowId" />
<label for="browser">Browser</label><br />
<input type="text" name="browser" id="browser" class="required" rel="0" />
<br />
<label for="platforms">Platform(s)</label><br />
<textarea name="platforms" id="Textarea1" class="required" rel="1"></textarea>
<br />
<label for="version">Engine version</label><br />
<select name="version" id="version" rel="2" multiple="multiple">
<option>1.7</option>
<option>1.8</option>
<option>1.5</option>
<option>4</option>
<option>5</option>
<option>5.5</option>
<option>6</option>
<option>7</option>
</select>
<br />
<label for="grade">CSS grade</label><br />
<input type="radio" name="grade" value="A" rel="3"> First<br>
<input type="radio" name="grade" value="B" rel="3"> Second<br>
<input type="radio" name="grade" value="C" rel="3"> Third
<input type="radio" name="grade" value="X" rel="3"> The Worst
<br />
<label for="version">Status</label><br />
<select name="status" id="status" rel="4">
<option value="1">Retired</option>
<option value="2">Live</option>
</select>
<br />
<span class="datafield" style="display:none" rel="5"><a class="table-action-EditData">Edit</a></span>
<span class="datafield" style="display:none" rel="6"><a href="/Details/DT_RowId">Details</a></span>
<button id="formEditDataOk" type="submit">Ok</button>
<button id="formEditDataCancel" type="button">Cancel</button>
</form>
<form id="formAddNewRow" action="#" title="Add new record">
<label for="browser">Browser</label><br />
<input type="text" name="browser" id="browser" rel="0" />
<br />
<label for="platforms">Platform(s)</label><br />
<textarea name="platforms" id="platforms" rel="1"></textarea>
<br />
<label for="version">Engine version</label><br />
<select name="version" id="version" rel="2" multiple="multiple">
<option>1.5</option>
<option>1.7</option>
<option>1.8</option>
</select>
<br />
<label for="grade">CSS grade</label><br />
<input type="radio" name="grade" value="A" rel="3"> First<br>
<input type="radio" name="grade" value="B" rel="3"> Second<br>
<input type="radio" name="grade" value="C" checked rel="3"> Third
<br />
<label for="version">Status</label><br />
<select name="status" id="Select1" rel="4">
<option value="1">Retired</option>
<option value="2">Live</option>
</select>
<br />
<span class="datafield" style="display:none" rel="5"><a class="table-action-EditData">Edit</a></span>
<span class="datafield" style="display:none" rel="6"><a href="/Details/DT_RowId">Details</a></span>
</form>
<div class="add_delete_toolbar" />
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
<thead>
<tr>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
<th>Status</th>
<th>Edit</th>
<th>Details</th></tr>
</thead>
<tbody>
<tr id="101">
<td>
Internet Explorer 4.0
</td>
<td>
Win 95+
</td>
<td>
4
</td>
<td>
X
</td>
<td>
Retired</td><td><a class="table-action-EditData">
Edit</a>
</td>
<td><a href="/Details/17">Details</a></td></tr>
<tr id="102">
<td>
Internet Explorer 5.0
</td>
<td>
Win 95+
</td>
<td>
5,5.5
</td>
<td>
C
</td>
<td>
Retired</td><td><a class="table-action-EditData">
Edit</a>
</td>
<td><a href="/Details/17">Details</a></td></tr>
<tr id="103">
<td>
Internet Explorer 5.5
</td>
<td>
Win 95+
</td>
<td>
5.5
</td>
<td>
A
</td>
<td>
Retired</td><td><a class="table-action-EditData">
Edit</a>
</td>
<td><a href="/Details/17">Details</a></td></tr>
<tr id="104">
<td>
Internet Explorer 6
</td>
<td>
Win 98+
</td>
<td>
6
</td>
<td>
A
</td>
<td>
Live</td><td><a class="table-action-EditData">
Edit</a>
</td>
<td><a href="/Details/17">Details</a></td></tr>
<tr id="105">
<td>
Internet Explorer 7
</td>
<td>
Win XP SP2+
</td>
<td>
7
</td>
<td>
A
</td>
<td>
Live</td><td><a class="table-action-EditData">
Edit</a>
</td>
<td><a href="/Details/17">Details</a></td></tr>
<tr id="106">
<td>
AOL browser (AOL desktop)
</td>
<td>
Win XP
</td>
<td>
6
</td>
<td>
A
</td>
<td>
Retired</td><td><a class="table-action-EditData">
Edit</a>
</td>
<td><a href="/Details/17">Details</a></td></tr>
</tbody>
</table>
</div>
<div class="spacer"></div>
<h1>Initialization code</h1>
<p>To initialize action, the action definition in the aoTableActions array. Action definition should contain name of the action,
URL of the server-side page that will be called, and dialog options that will be passed to the action popup dialog. </p>
<pre>$(document).ready(function () {
$('#example').dataTable()
.makeEditable({
aoTableActions: [
{
sAction: "EditData",
sServerActionURL: "UpdateData.php",
oFormOptions: { autoOpen: false, modal:true }
}
],
sUpdateURL: "UpdateData.php",
sAddURL: "AddData.php",
sDeleteURL: "DeleteData.php",
aoColumns: [ { } , { } , { } , { } , null ]
});
});
</pre>
<h1>Action form</h1>
<p>One action form that will be loaded from the form and update row cells should be defined.
This form should have the following properties:
<ul>
<li>id of the form should be form(ACTION NAME)
<li>Elements of the form should have rel attributes that match table cells by id
<li>There should be ok and cancel buttons with the ids form(ACTION NAME)Ok nd form(ACTION NAME)Cancel
</ul>
Example is shown below:
</p>
<pre><form id="formEditData" action="UpdateData.php" title="Update Platforms">
<label for="browser">Browser</label><br />
<input type="text" name="browser" id="browser" class="required" rel="0" />
<br />
<label for="platforms">Platform(s)</label><br />
<textarea name="platforms" id="Textarea1" class="required" rel="1"></textarea>
<br />
<label for="version">Engine version</label><br />
<select name="version" id="version" rel="2">
<option>1.5</option>
<option>1.7</option>
<option>1.8</option>
<option>1.5</option>
<option>4</option>
<option>5</option>
<option>5.5</option>
<option>6</option>
<option>7</option>
</select>
<br />
<label for="grade">CSS grade</label><br />
<input type="radio" name="grade" value="A" rel="3"> First<br>
<input type="radio" name="grade" value="B" rel="3"> Second<br>
<input type="radio" name="grade" value="C" rel="3"> Third
<input type="radio" name="grade" value="X" rel="3"> The Worst
<br />
<button id="formEditDataOk" type="submit">Ok</button>
<button id="formEditDataCancel" type="button">Cancel</button>
</form>
</pre>
<h1>Starting actions</h1>
<p>Each table row should have a link with id table-action-(ACTION NAME) that will start the action.</p>
<h2>Other examples</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="inline-edit.html">Editing cells</a></li>
<li><a href="addingrecords.html">Adding a new record</a></li>
<li><a href="delete-record.html">Delete records</a></li>
<li><a href="custom-editors.html">Custom editors</a></li>
<li><a href="inline-validation.html">Validation of inline cells</a></li>
<li><a href="events.html">Pre-processing and post-processing events</a></li>
<li><a href="customization.html">User interface customizations</a></li>
<li><a href="custom-messages.html">Customization of message dialogs</a></li>
<li><a href="customize-buttons.html">Customization of buttons and form</a></li>
<li><a href="configure-dom.html">Two different tables on the same page</a></li>
<li><a href="ajax.html">Using Ajax source</a></li>
</ul>
<div id="footer" style="text-align:center;">
<span style="font-size:10px;">
DataTables Editable © Jovan Popovic 2010-2011.<br>
</span>
</div>
</div>
</body>
</html>