-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsheet1.html
500 lines (432 loc) · 16.9 KB
/
sheet1.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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Sheet 1</title>
<link href="css/bootstrap-reboot.css" rel="stylesheet" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<style>
#datatable tbody > tr:first-child td, #datatable tbody > tr:first-child th {
font-weight: bold;
background: #d1ecf1;
font-size: .85em;
letter-spacing: .1em;
text-transform: uppercase;
}
table {
border: 1px solid #ccc;
border-collapse: collapse;
table-layout: fixed;
width: 100%;
}
table caption {
font-size: 1.5em;
margin: .5em 0 .75em;
}
table tr {
border: 1px solid #ddd;
padding: .35em;
}
table tr:nth-child(even) {
background: #f8f8f8;
}
table th, table td {
padding: .625em;
text-align: left;
}
table td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.table-overflow {
height: 500px;
overflow-x: hidden;
overflow-y: scroll;
}
</style>
</head>
<body>
<script data-cfasync="false" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="container mt-5 mb-5">
<h3>Create Records</h3>
<form id="formCreate" class="row" >
<div class="form-group col-6">
<label>Name</label>
<input class="form-control" name="name" type="text" >
</div>
<div class="form-group col-6">
<label>Email</label>
<input class="form-control" name="email" type="text" >
</div>
<div class="col-12">
<input type="hidden" name="action" value="create">
<!-- <input type="hidden" name="SHEET_NAME" value="Sheet1">-->
<p id="result"></p>
<input type="submit" value="Submit Data" class="btn btn-primary" />
</div>
</form>
<hr/>
</div>
<div class="container mt-5 mb-5">
<form id="formRetrieve" >
<h3>Retrieve Records</h3>
<div class="form-group">
<input type="hidden" name="action" value="retrieve">
<input class="btn btn-warning" id="btnRetrieve" type="submit" value="Retrieve" />
</div>
<div class="row">
<div class="form-group col-3">
<input class="form-control" id="myInput" type="text" placeholder="Search..">
</div>
</div>
</form>
</div>
<div class="table-overflow">
<div class="table-responsive">
<table id="datatable" class="table table-hover">
</table>
</div>
</div>
<div id="messageRetrieve"></div>
<div class="container mt-5 mb-5">
<hr class="mb-5"/>
<form id="formUpdate" >
<h3>Update Record</h3>
<div class="row">
<div class="form-group col-6">
<label>TID</label>
<input class="form-control" name="tid" type="text" id="tid">
</div>
<div class="form-group col-6">
<label>Name</label>
<input class="form-control" name="name" type="text" id="name">
</div>
<div class="form-group col-6">
<label>Email</label>
<input class="form-control" name="email" type="text" id="email" >
</div>
<div class="form-group col-12">
<input type="hidden" name="action" value="update">
<input class="btn btn-success" type="submit" value="Update" />
<p id="messageUpdate"></p>
</div>
</div>
</form>
<hr class="mb-5"/>
<form id="formDelete" >
<h3>Delete Record</h3>
<div class="row">
<div class="form-group col-6">
<label>TID</label>
<input class="form-control" name="tid" type="text" id="dtid" disabled="true">
</div>
<div class="form-group col-6">
<label>Name</label>
<input class="form-control" name="Name" type="text" id="dname" disabled="true">
</div>
<div class="form-group col-6">
<label>Email</label>
<input class="form-control" name="Email" type="text" id="demail" disabled="true">
</div>
<div class="form-group col-12">
<input type="hidden" name="action" value="delete">
<input class="btn btn-danger" type="submit" value="Delete" />
<p id="messageDelete"></p>
</div>
</div>
</form>
</div>
<script>
$(window).load(function () {
$("#btnRetrieve").click();
})
jQuery( document ).ready(function( $ ) {
//CUSTOME SEARCH
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#datatable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
//CUSTOM SEARCH ENDS
// variable to hold request
var request;
// bind to the submit event of our form
$("#formCreate").submit(function(event){
// abort any pending request
if (request) {
request.abort();
}
// setup some local variables
var $form = $(this);
// let's select and cache all the fields
var $inputs = $form.find("input, select, button, textarea");
// serialize the data in the form
var serializedData = $form.serialize();
// let's disable the inputs for the duration of the ajax request
// Note: we disable elements AFTER the form data has been serialized.
// Disabled form elements will not be serialized.
$inputs.prop("disabled", true);
$('#result').text('Sending data...');
// fire off the request to /form.php
request = $.ajax({
url: "https://script.google.com/macros/s/AKfycbxIHBXdtUEuiN4T0ortcwt2YXWWl60y6IlqnyPpGIqXmlvJRQ6b/exec",
type: "post",
data: serializedData
});
// callback handler that will be called on success
request.done(function (response, textStatus, jqXHR){
// log a message to the console
$('#result').html('<a href="https://docs.google.com/spreadsheets/d/18wg3b-rBhTBFvr-bBmyviwAUBVXqsEPfYQzulSSloBs/edit#gid=0" target="_blank">Success - see Google Sheet</a>');
console.log("Created.");
//console.log(response);
//console.log(textStatus);
//console.log(jqXHR);
resetForm();
$("#btnRetrieve").click();
});
// callback handler that will be called on failure
request.fail(function (jqXHR, textStatus, errorThrown){
// log the error to the console
console.error(
"The following error occured: "+
textStatus, errorThrown
);
});
// callback handler that will be called regardless
// if the request failed or succeeded
request.always(function () {
// reenable the inputs
$inputs.prop("disabled", false);
});
// prevent default posting of form
event.preventDefault();
});
$("#formRetrieve").submit(function(event){
// abort any pending request
if (request) {
request.abort();
}
// setup some local variables
var $form = $(this);
// let's select and cache all the fields
var $inputs = $form.find("input, select, button, textarea");
// serialize the data in the form
var serializedData = $form.serialize();
// let's disable the inputs for the duration of the ajax request
// Note: we disable elements AFTER the form data has been serialized.
// Disabled form elements will not be serialized.
$inputs.prop("disabled", true);
resetForm();
$('#messageRetrieve').text('Requesting data...');
$('#datatable').text("");
// fire off the request to /form.php
request = $.ajax({
url: "https://script.google.com/macros/s/AKfycbxIHBXdtUEuiN4T0ortcwt2YXWWl60y6IlqnyPpGIqXmlvJRQ6b/exec",
type: "post",
data: serializedData
});
// callback handler that will be called on success
request.done(function (response, textStatus, jqXHR){
// log a message to the console
$('#result').html('<a href="https://docs.google.com/spreadsheets/d/18wg3b-rBhTBFvr-bBmyviwAUBVXqsEPfYQzulSSloBs/edit#gid=0" target="_blank">Success - see Google Sheet</a>');
console.log("Retrieved.");
//console.log(response);
//console.log(textStatus);
//console.log(jqXHR);
var data = response.values;
//console.log(data);
var trHTML ="";
$.each(data, function (i, item) {
var tdHTML="";
//prepare first two columns
if (i==0){
tdHTML= "<td>Delete</td><td>Edit</td>" + tdHTML;
tdHTML=tdHTML.replace(/td>/gi,"th>");
}else{
tdHTML+= "<td><button onclick='recordDelete(this)' >delete</button></td>";
tdHTML+= "<td><button onclick='recordEdit(this)' >edit</button></td>";
}
//prepare remaining columns
for (j = 0; j < item.length; j++) {
tdHTML += "<td>" + item[j] + "</td>";
}
trHTML += "<tr>" + tdHTML + "</tr>";
}); //end each records
//append records to table element
$('#datatable').append(trHTML);
//reset
$('#messageRetrieve').text('');
$('#messageRetrieve')[0].scrollIntoView(false);
});
// callback handler that will be called on failure
request.fail(function (jqXHR, textStatus, errorThrown){
// log the error to the console
console.error(
"The following error occured: "+
textStatus, errorThrown
);
});
// callback handler that will be called regardless
// if the request failed or succeeded
request.always(function () {
// reenable the inputs
$inputs.prop("disabled", false);
});
// prevent default posting of form
event.preventDefault();
});
$("#formUpdate").submit(function(event){
// abort any pending request
if (request) {
request.abort();
}
// setup some local variables
var $form = $(this);
// let's select and cache all the fields
var $inputs = $form.find("input, select, button, textarea");
// serialize the data in the form
var serializedData = $form.serialize();
// let's disable the inputs for the duration of the ajax request
// Note: we disable elements AFTER the form data has been serialized.
// Disabled form elements will not be serialized.
$inputs.prop("disabled", true);
resetForm();
$('#messageUpdate').text('Updating data...');
// fire off the request to /form.php
// request = $.ajax({
// url: "https://script.google.com/macros/s/AKfycbxIHBXdtUEuiN4T0ortcwt2YXWWl60y6IlqnyPpGIqXmlvJRQ6b/exec",
// type: "post",
// data: serializedData
// });
request = $.ajax({
url: "https://script.google.com/macros/s/AKfycbxIHBXdtUEuiN4T0ortcwt2YXWWl60y6IlqnyPpGIqXmlvJRQ6b/exec",
type: "post",
data: serializedData,
});
// callback handler that will be called on success
request.done(function (response, textStatus, jqXHR){
// log a message to the console
$('#result').html('<a href="https://docs.google.com/spreadsheets/d/18wg3b-rBhTBFvr-bBmyviwAUBVXqsEPfYQzulSSloBs/edit#gid=0" target="_blank">Success - see Google Sheet</a>');
console.log("Updated.");
//console.log(response);
//console.log(textStatus);
//console.log(jqXHR);
resetForm();
$('#messageUpdate').text('');
$("#btnRetrieve").click();
});
// callback handler that will be called on failure
request.fail(function (jqXHR, textStatus, errorThrown){
// log the error to the console
console.error(
"The following error occured: "+
textStatus, errorThrown
);
});
// callback handler that will be called regardless
// if the request failed or succeeded
request.always(function () {
// reenable the inputs
$inputs.prop("disabled", false);
});
// prevent default posting of form
event.preventDefault();
});
$("#formDelete").submit(function(event){
// abort any pending request
if (request) {
request.abort();
}
// setup some local variables
var $form = $(this);
// let's select and cache all the fields
var $inputs = $form.find("input, select, button, textarea");
// serialize the data in the form
var serializedData = $form.serialize();
// let's disable the inputs for the duration of the ajax request
// Note: we disable elements AFTER the form data has been serialized.
// Disabled form elements will not be serialized.
$inputs.prop("disabled", true);
resetForm();
$('#messageDelete').text('Deleting data...');
// fire off the request to /form.php
request = $.ajax({
url: "https://script.google.com/macros/s/AKfycbxIHBXdtUEuiN4T0ortcwt2YXWWl60y6IlqnyPpGIqXmlvJRQ6b/exec",
type: "post",
data: serializedData
});
// callback handler that will be called on success
request.done(function (response, textStatus, jqXHR){
// log a message to the console
$('#result').html('<a href="https://docs.google.com/spreadsheets/d/18wg3b-rBhTBFvr-bBmyviwAUBVXqsEPfYQzulSSloBs/edit#gid=0" target="_blank">Success - see Google Sheet</a>');
// console.log("Deleted.");
console.log(response);
// console.log(textStatus);
// console.log(jqXHR);
resetForm();
$('#messageDelete').text('');
$("#btnRetrieve").click();
});
// callback handler that will be called on failure
request.fail(function (jqXHR, textStatus, errorThrown){
// log the error to the console
console.error(
"The following error occured: "+
textStatus, errorThrown
);
});
// callback handler that will be called regardless
// if the request failed or succeeded
request.always(function () {
// reenable the inputs
$inputs.prop("disabled", false);
});
// prevent default posting of form
event.preventDefault();
});
});
function recordEdit(param) {
resetForm();
var arrRecord=[];
$(param).closest('tr').find('td').not(':first').each(function() {
//var textval = $(this).text();
arrRecord.push( $(this).text());
});
$("#formUpdate #tid").val(arrRecord[1]);
$("#formUpdate #name").val(arrRecord[2]);
$("#formUpdate #email").val(arrRecord[3]);
//window.location.hash = '#formUpdate';
// var formUpdate = document.getElementById ("formUpdate");
//formUpdate.scrollIntoView(true);
$('#formUpdate')[0].scrollIntoView();
//alert(address.join('\n'));
};
function recordDelete(param) {
resetForm();
var arrRecord=[];
$(param).closest('tr').find('td').not(':first').each(function() {
//var textval = $(this).text();
arrRecord.push( $(this).text());
});
$("#formDelete #dtid").val(arrRecord[1]);
$("#formDelete #dname").val(arrRecord[2]);
$("#formDelete #demail").val(arrRecord[3]);
//window.location.hash = '#formUpdate';
// var formUpdate = document.getElementById ("formUpdate");
//formUpdate.scrollIntoView(true);
$('#formDelete')[0].scrollIntoView();
//alert(address.join('\n'));
};
function resetForm(){
$('#formCreate')[0].reset();
$('#formUpdate')[0].reset();
$("#formUpdate tid").prop("disabled", true);
$('#formDelete')[0].reset();
$("#formDelete dtid").prop("disabled", true);
$("#formUpdate dname").prop("disabled", true);
}
</script>
</body>
</html>