Translated using Weblate (Slovenian)
[phpmyadmin.git] / js / makegrid.js
blob56ba25f770cf9849369f5d11133ae578bab00893
1 /* vim: set expandtab sw=4 ts=4 sts=4: */
2 /**
3  * Create advanced table (resize, reorder, and show/hide columns; and also grid editing).
4  * This function is designed mainly for table DOM generated from browsing a table in the database.
5  * For using this function in other table DOM, you may need to:
6  * - add "draggable" class in the table header <th>, in order to make it resizable, sortable or hidable
7  * - have at least one non-"draggable" header in the table DOM for placing column visibility drop-down arrow
8  * - pass the value "false" for the parameter "enableGridEdit"
9  * - adjust other parameter value, to select which features that will be enabled
10  *
11  * @param t the table DOM element
12  * @param enableResize Optional, if false, column resizing feature will be disabled
13  * @param enableReorder Optional, if false, column reordering feature will be disabled
14  * @param enableVisib Optional, if false, show/hide column feature will be disabled
15  * @param enableGridEdit Optional, if false, grid editing feature will be disabled
16  */
17 function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdit) {
18     var g = {
19         /***********
20          * Constant
21          ***********/
22         minColWidth: 15,
25         /***********
26          * Variables, assigned with default value, changed later
27          ***********/
28         actionSpan: 5,              // number of colspan in Actions header in a table
29         tableCreateTime: null,      // table creation time, used for saving column order and visibility to server, only available in "Browse tab"
31         // Column reordering variables
32         colOrder: [],      // array of column order
34         // Column visibility variables
35         colVisib: [],      // array of column visibility
36         showAllColText: '',         // string, text for "show all" button under column visibility list
37         visibleHeadersCount: 0,     // number of visible data headers
39         // Table hint variables
40         reorderHint: '',            // string, hint for column reordering
41         sortHint: '',               // string, hint for column sorting
42         markHint: '',               // string, hint for column marking
43         copyHint: '',               // string, hint for copy column name
44         showReorderHint: false,
45         showSortHint: false,
46         showMarkHint: false,
48         // Grid editing
49         isCellEditActive: false,    // true if current focus is in edit cell
50         isEditCellTextEditable: false,  // true if current edit cell is editable in the text input box (not textarea)
51         currentEditCell: null,      // reference to <td> that currently being edited
52         cellEditHint: '',           // hint shown when doing grid edit
53         gotoLinkText: '',           // "Go to link" text
54         wasEditedCellNull: false,   // true if last value of the edited cell was NULL
55         maxTruncatedLen: 0,         // number of characters that can be displayed in a cell
56         saveCellsAtOnce: false,     // $cfg[saveCellsAtOnce]
57         isCellEdited: false,        // true if at least one cell has been edited
58         saveCellWarning: '',        // string, warning text when user want to leave a page with unsaved edited data
59         lastXHR : null,             // last XHR object used in AJAX request
60         isSaving: false,            // true when currently saving edited data, used to handle double posting caused by pressing ENTER in grid edit text box in Chrome browser
61         alertNonUnique: '',         // string, alert shown when saving edited nonunique table
63         // Common hidden inputs
64         token: null,
65         server: null,
66         db: null,
67         table: null,
70         /************
71          * Functions
72          ************/
74         /**
75          * Start to resize column. Called when clicking on column separator.
76          *
77          * @param e event
78          * @param obj dragged div object
79          */
80         dragStartRsz: function (e, obj) {
81             var n = $(g.cRsz).find('div').index(obj);    // get the index of separator (i.e., column index)
82             $(obj).addClass('colborder_active');
83             g.colRsz = {
84                 x0: e.pageX,
85                 n: n,
86                 obj: obj,
87                 objLeft: $(obj).position().left,
88                 objWidth: $(g.t).find('th.draggable:visible:eq(' + n + ') span').outerWidth()
89             };
90             $(document.body).css('cursor', 'col-resize').noSelect();
91             if (g.isCellEditActive) {
92                 g.hideEditCell();
93             }
94         },
96         /**
97          * Start to reorder column. Called when clicking on table header.
98          *
99          * @param e event
100          * @param obj table header object
101          */
102         dragStartReorder: function (e, obj) {
103             // prepare the cCpy (column copy) and cPointer (column pointer) from the dragged column
104             $(g.cCpy).text($(obj).text());
105             var objPos = $(obj).position();
106             $(g.cCpy).css({
107                 top: objPos.top + 20,
108                 left: objPos.left,
109                 height: $(obj).height(),
110                 width: $(obj).width()
111             });
112             $(g.cPointer).css({
113                 top: objPos.top
114             });
116             // get the column index, zero-based
117             var n = g.getHeaderIdx(obj);
119             g.colReorder = {
120                 x0: e.pageX,
121                 y0: e.pageY,
122                 n: n,
123                 newn: n,
124                 obj: obj,
125                 objTop: objPos.top,
126                 objLeft: objPos.left
127             };
129             $(document.body).css('cursor', 'move').noSelect();
130             if (g.isCellEditActive) {
131                 g.hideEditCell();
132             }
133         },
135         /**
136          * Handle mousemove event when dragging.
137          *
138          * @param e event
139          */
140         dragMove: function (e) {
141             if (g.colRsz) {
142                 var dx = e.pageX - g.colRsz.x0;
143                 if (g.colRsz.objWidth + dx > g.minColWidth) {
144                     $(g.colRsz.obj).css('left', g.colRsz.objLeft + dx + 'px');
145                 }
146             } else if (g.colReorder) {
147                 // dragged column animation
148                 var dx = e.pageX - g.colReorder.x0;
149                 $(g.cCpy)
150                     .css('left', g.colReorder.objLeft + dx)
151                     .show();
153                 // pointer animation
154                 var hoveredCol = g.getHoveredCol(e);
155                 if (hoveredCol) {
156                     var newn = g.getHeaderIdx(hoveredCol);
157                     g.colReorder.newn = newn;
158                     if (newn != g.colReorder.n) {
159                         // show the column pointer in the right place
160                         var colPos = $(hoveredCol).position();
161                         var newleft = newn < g.colReorder.n ?
162                                       colPos.left :
163                                       colPos.left + $(hoveredCol).outerWidth();
164                         $(g.cPointer)
165                             .css({
166                                 left: newleft,
167                                 visibility: 'visible'
168                             });
169                     } else {
170                         // no movement to other column, hide the column pointer
171                         $(g.cPointer).css('visibility', 'hidden');
172                     }
173                 }
174             }
175         },
177         /**
178          * Stop the dragging action.
179          *
180          * @param e event
181          */
182         dragEnd: function (e) {
183             if (g.colRsz) {
184                 var dx = e.pageX - g.colRsz.x0;
185                 var nw = g.colRsz.objWidth + dx;
186                 if (nw < g.minColWidth) {
187                     nw = g.minColWidth;
188                 }
189                 var n = g.colRsz.n;
190                 // do the resizing
191                 g.resize(n, nw);
193                 g.reposRsz();
194                 g.reposDrop();
195                 g.colRsz = false;
196                 $(g.cRsz).find('div').removeClass('colborder_active');
197                 rearrangeStickyColumns($(t).prev('.sticky_columns'), $(t));
198             } else if (g.colReorder) {
199                 // shift columns
200                 if (g.colReorder.newn != g.colReorder.n) {
201                     g.shiftCol(g.colReorder.n, g.colReorder.newn);
202                     // assign new position
203                     var objPos = $(g.colReorder.obj).position();
204                     g.colReorder.objTop = objPos.top;
205                     g.colReorder.objLeft = objPos.left;
206                     g.colReorder.n = g.colReorder.newn;
207                     // send request to server to remember the column order
208                     if (g.tableCreateTime) {
209                         g.sendColPrefs();
210                     }
211                     g.refreshRestoreButton();
212                 }
214                 // animate new column position
215                 $(g.cCpy).stop(true, true)
216                     .animate({
217                         top: g.colReorder.objTop,
218                         left: g.colReorder.objLeft
219                     }, 'fast')
220                     .fadeOut();
221                 $(g.cPointer).css('visibility', 'hidden');
223                 g.colReorder = false;
224                 rearrangeStickyColumns($(t).prev('.sticky_columns'), $(t));
225             }
226             $(document.body).css('cursor', 'inherit').noSelect(false);
227         },
229         /**
230          * Resize column n to new width "nw"
231          *
232          * @param n zero-based column index
233          * @param nw new width of the column in pixel
234          */
235         resize: function (n, nw) {
236             $(g.t).find('tr').each(function () {
237                 $(this).find('th.draggable:visible:eq(' + n + ') span,' +
238                              'td:visible:eq(' + (g.actionSpan + n) + ') span')
239                        .css('width', nw);
240             });
241         },
243         /**
244          * Reposition column resize bars.
245          */
246         reposRsz: function () {
247             $(g.cRsz).find('div').hide();
248             var $firstRowCols = $(g.t).find('tr:first th.draggable:visible');
249             var $resizeHandles = $(g.cRsz).find('div').removeClass('condition');
250             $(g.t).find('table.pma_table').find('thead th:first').removeClass('before-condition');
251             for (var n = 0, l = $firstRowCols.length; n < l; n++) {
252                 var $col = $($firstRowCols[n]);
253                 var colWidth;
254                 if (navigator.userAgent.toLowerCase().indexOf("safari") != -1) {
255                     colWidth = $col.outerWidth();
256                 } else {
257                     colWidth = $col.outerWidth(true);
258                 }
259                 $($resizeHandles[n]).css('left', $col.position().left + colWidth)
260                    .show();
261                 if ($col.hasClass('condition')) {
262                     $($resizeHandles[n]).addClass('condition');
263                     if (n > 0) {
264                         $($resizeHandles[n - 1]).addClass('condition');
265                     }
266                 }
267             }
268             if ($($resizeHandles[0]).hasClass('condition')) {
269                 $(g.t).find('thead th:first').addClass('before-condition');
270             }
271             $(g.cRsz).css('height', $(g.t).height());
272         },
274         /**
275          * Shift column from index oldn to newn.
276          *
277          * @param oldn old zero-based column index
278          * @param newn new zero-based column index
279          */
280         shiftCol: function (oldn, newn) {
281             $(g.t).find('tr').each(function () {
282                 if (newn < oldn) {
283                     $(this).find('th.draggable:eq(' + newn + '),' +
284                                  'td:eq(' + (g.actionSpan + newn) + ')')
285                            .before($(this).find('th.draggable:eq(' + oldn + '),' +
286                                                 'td:eq(' + (g.actionSpan + oldn) + ')'));
287                 } else {
288                     $(this).find('th.draggable:eq(' + newn + '),' +
289                                  'td:eq(' + (g.actionSpan + newn) + ')')
290                            .after($(this).find('th.draggable:eq(' + oldn + '),' +
291                                                'td:eq(' + (g.actionSpan + oldn) + ')'));
292                 }
293             });
294             // reposition the column resize bars
295             g.reposRsz();
297             // adjust the column visibility list
298             if (newn < oldn) {
299                 $(g.cList).find('.lDiv div:eq(' + newn + ')')
300                           .before($(g.cList).find('.lDiv div:eq(' + oldn + ')'));
301             } else {
302                 $(g.cList).find('.lDiv div:eq(' + newn + ')')
303                           .after($(g.cList).find('.lDiv div:eq(' + oldn + ')'));
304             }
305             // adjust the colOrder
306             var tmp = g.colOrder[oldn];
307             g.colOrder.splice(oldn, 1);
308             g.colOrder.splice(newn, 0, tmp);
309             // adjust the colVisib
310             if (g.colVisib.length > 0) {
311                 tmp = g.colVisib[oldn];
312                 g.colVisib.splice(oldn, 1);
313                 g.colVisib.splice(newn, 0, tmp);
314             }
315         },
317         /**
318          * Find currently hovered table column's header (excluding actions column).
319          *
320          * @param e event
321          * @return the hovered column's th object or undefined if no hovered column found.
322          */
323         getHoveredCol: function (e) {
324             var hoveredCol;
325             $headers = $(g.t).find('th.draggable:visible');
326             $headers.each(function () {
327                 var left = $(this).offset().left;
328                 var right = left + $(this).outerWidth();
329                 if (left <= e.pageX && e.pageX <= right) {
330                     hoveredCol = this;
331                 }
332             });
333             return hoveredCol;
334         },
336         /**
337          * Get a zero-based index from a <th class="draggable"> tag in a table.
338          *
339          * @param obj table header <th> object
340          * @return zero-based index of the specified table header in the set of table headers (visible or not)
341          */
342         getHeaderIdx: function (obj) {
343             return $(obj).parents('tr').find('th.draggable').index(obj);
344         },
346         /**
347          * Reposition the columns back to normal order.
348          */
349         restoreColOrder: function () {
350             // use insertion sort, since we already have shiftCol function
351             for (var i = 1; i < g.colOrder.length; i++) {
352                 var x = g.colOrder[i];
353                 var j = i - 1;
354                 while (j >= 0 && x < g.colOrder[j]) {
355                     j--;
356                 }
357                 if (j != i - 1) {
358                     g.shiftCol(i, j + 1);
359                 }
360             }
361             if (g.tableCreateTime) {
362                 // send request to server to remember the column order
363                 g.sendColPrefs();
364             }
365             g.refreshRestoreButton();
366         },
368         /**
369          * Send column preferences (column order and visibility) to the server.
370          */
371         sendColPrefs: function () {
372             if ($(g.t).is('.ajax')) {   // only send preferences if ajax class
373                 var post_params = {
374                     ajax_request: true,
375                     db: g.db,
376                     table: g.table,
377                     token: g.token,
378                     server: g.server,
379                     set_col_prefs: true,
380                     table_create_time: g.tableCreateTime
381                 };
382                 if (g.colOrder.length > 0) {
383                     $.extend(post_params, {col_order: g.colOrder.toString()});
384                 }
385                 if (g.colVisib.length > 0) {
386                     $.extend(post_params, {col_visib: g.colVisib.toString()});
387                 }
388                 $.post('sql.php', post_params, function (data) {
389                     if (data.success !== true) {
390                         var $temp_div = $(document.createElement('div'));
391                         $temp_div.html(data.error);
392                         $temp_div.addClass("error");
393                         PMA_ajaxShowMessage($temp_div, false);
394                     }
395                 });
396             }
397         },
399         /**
400          * Refresh restore button state.
401          * Make restore button disabled if the table is similar with initial state.
402          */
403         refreshRestoreButton: function () {
404             // check if table state is as initial state
405             var isInitial = true;
406             for (var i = 0; i < g.colOrder.length; i++) {
407                 if (g.colOrder[i] != i) {
408                     isInitial = false;
409                     break;
410                 }
411             }
412             // check if only one visible column left
413             var isOneColumn = g.visibleHeadersCount == 1;
414             // enable or disable restore button
415             if (isInitial || isOneColumn) {
416                 $(g.o).find('div.restore_column').hide();
417             } else {
418                 $(g.o).find('div.restore_column').show();
419             }
420         },
422         /**
423          * Update current hint using the boolean values (showReorderHint, showSortHint, etc.).
424          *
425          */
426         updateHint: function () {
427             var text = '';
428             if (!g.colRsz && !g.colReorder) {     // if not resizing or dragging
429                 if (g.visibleHeadersCount > 1) {
430                     g.showReorderHint = true;
431                 }
432                 if ($(t).find('th.marker').length > 0) {
433                     g.showMarkHint = true;
434                 }
435                 if (g.showSortHint && g.sortHint) {
436                     text += text.length > 0 ? '<br />' : '';
437                     text += '- ' + g.sortHint;
438                 }
439                 if (g.showMultiSortHint && g.strMultiSortHint) {
440                     text += text.length > 0 ? '<br />' : '';
441                     text += '- ' + g.strMultiSortHint;
442                 }
443                 if (g.showMarkHint &&
444                     g.markHint &&
445                     ! g.showSortHint && // we do not show mark hint, when sort hint is shown
446                     g.showReorderHint &&
447                     g.reorderHint
448                 ) {
449                     text += text.length > 0 ? '<br />' : '';
450                     text += '- ' + g.reorderHint;
451                     text += text.length > 0 ? '<br />' : '';
452                     text += '- ' + g.markHint;
453                     text += text.length > 0 ? '<br />' : '';
454                     text += '- ' + g.copyHint;
455                 }
456             }
457             return text;
458         },
460         /**
461          * Toggle column's visibility.
462          * After calling this function and it returns true, afterToggleCol() must be called.
463          *
464          * @return boolean True if the column is toggled successfully.
465          */
466         toggleCol: function (n) {
467             if (g.colVisib[n]) {
468                 // can hide if more than one column is visible
469                 if (g.visibleHeadersCount > 1) {
470                     $(g.t).find('tr').each(function () {
471                         $(this).find('th.draggable:eq(' + n + '),' +
472                                      'td:eq(' + (g.actionSpan + n) + ')')
473                                .hide();
474                     });
475                     g.colVisib[n] = 0;
476                     $(g.cList).find('.lDiv div:eq(' + n + ') input').prop('checked', false);
477                 } else {
478                     // cannot hide, force the checkbox to stay checked
479                     $(g.cList).find('.lDiv div:eq(' + n + ') input').prop('checked', true);
480                     return false;
481                 }
482             } else {    // column n is not visible
483                 $(g.t).find('tr').each(function () {
484                     $(this).find('th.draggable:eq(' + n + '),' +
485                                  'td:eq(' + (g.actionSpan + n) + ')')
486                            .show();
487                 });
488                 g.colVisib[n] = 1;
489                 $(g.cList).find('.lDiv div:eq(' + n + ') input').prop('checked', true);
490             }
491             return true;
492         },
494         /**
495          * This must be called if toggleCol() returns is true.
496          *
497          * This function is separated from toggleCol because, sometimes, we want to toggle
498          * some columns together at one time and do just one adjustment after it, e.g. in showAllColumns().
499          */
500         afterToggleCol: function () {
501             // some adjustments after hiding column
502             g.reposRsz();
503             g.reposDrop();
504             g.sendColPrefs();
506             // check visible first row headers count
507             g.visibleHeadersCount = $(g.t).find('tr:first th.draggable:visible').length;
508             g.refreshRestoreButton();
509         },
511         /**
512          * Show columns' visibility list.
513          *
514          * @param obj The drop down arrow of column visibility list
515          */
516         showColList: function (obj) {
517             // only show when not resizing or reordering
518             if (!g.colRsz && !g.colReorder) {
519                 var pos = $(obj).position();
520                 // check if the list position is too right
521                 if (pos.left + $(g.cList).outerWidth(true) > $(document).width()) {
522                     pos.left = $(document).width() - $(g.cList).outerWidth(true);
523                 }
524                 $(g.cList).css({
525                         left: pos.left,
526                         top: pos.top + $(obj).outerHeight(true)
527                     })
528                     .show();
529                 $(obj).addClass('coldrop-hover');
530             }
531         },
533         /**
534          * Hide columns' visibility list.
535          */
536         hideColList: function () {
537             $(g.cList).hide();
538             $(g.cDrop).find('.coldrop-hover').removeClass('coldrop-hover');
539         },
541         /**
542          * Reposition the column visibility drop-down arrow.
543          */
544         reposDrop: function () {
545             var $th = $(t).find('th:not(.draggable)');
546             for (var i = 0; i < $th.length; i++) {
547                 var $cd = $(g.cDrop).find('div:eq(' + i + ')');   // column drop-down arrow
548                 var pos = $($th[i]).position();
549                 $cd.css({
550                         left: pos.left + $($th[i]).width() - $cd.width(),
551                         top: pos.top
552                     });
553             }
554         },
556         /**
557          * Show all hidden columns.
558          */
559         showAllColumns: function () {
560             for (var i = 0; i < g.colVisib.length; i++) {
561                 if (!g.colVisib[i]) {
562                     g.toggleCol(i);
563                 }
564             }
565             g.afterToggleCol();
566         },
568         /**
569          * Show edit cell, if it can be shown
570          *
571          * @param cell <td> element to be edited
572          */
573         showEditCell: function (cell) {
574             if ($(cell).is('.grid_edit') &&
575                 !g.colRsz && !g.colReorder)
576             {
577                 if (!g.isCellEditActive) {
578                     var $cell = $(cell);
580                     if ('string' === $cell.attr('data-type') ||
581                         'blob' === $cell.attr('data-type')
582                     ) {
583                         g.cEdit = g.cEditTextarea;
584                     } else {
585                         g.cEdit = g.cEditStd;
586                     }
588                     // remove all edit area and hide it
589                     $(g.cEdit).find('.edit_area').empty().hide();
590                     // reposition the cEdit element
591                     $(g.cEdit).css({
592                             top: $cell.position().top,
593                             left: $cell.position().left
594                         })
595                         .show()
596                         .find('.edit_box')
597                         .css({
598                             width: $cell.outerWidth(),
599                             height: $cell.outerHeight()
600                         });
601                     // fill the cell edit with text from <td>
602                     var value = PMA_getCellValue(cell);
603                     $(g.cEdit).find('.edit_box').val(value);
605                     g.currentEditCell = cell;
606                     $(g.cEdit).find('.edit_box').focus();
607                     moveCursorToEnd($(g.cEdit).find('.edit_box'));
608                     $(g.cEdit).find('*').removeProp('disabled');
609                 }
610             }
612             function moveCursorToEnd(input) {
613                 var originalValue = input.val();
614                 var originallength = originalValue.length;
615                 input.val('');
616                 input.blur().focus().val(originalValue);
617                 input[0].setSelectionRange(originallength, originallength);
618             }
619         },
621         /**
622          * Remove edit cell and the edit area, if it is shown.
623          *
624          * @param force Optional, force to hide edit cell without saving edited field.
625          * @param data  Optional, data from the POST AJAX request to save the edited field
626          *              or just specify "true", if we want to replace the edited field with the new value.
627          * @param field Optional, the edited <td>. If not specified, the function will
628          *              use currently edited <td> from g.currentEditCell.
629          * @param field Optional, this object contains a boolean named move (true, if called from move* functions)
630          *              and a <td> to which the grid_edit should move
631          */
632         hideEditCell: function (force, data, field, options) {
633             if (g.isCellEditActive && !force) {
634                 // cell is being edited, save or post the edited data
635                 if (options !== undefined) {
636                     g.saveOrPostEditedCell(options);
637                 } else {
638                     g.saveOrPostEditedCell();
639                 }
640                 return;
641             }
643             // cancel any previous request
644             if (g.lastXHR !== null) {
645                 g.lastXHR.abort();
646                 g.lastXHR = null;
647             }
649             if (data) {
650                 if (g.currentEditCell) {    // save value of currently edited cell
651                     // replace current edited field with the new value
652                     var $this_field = $(g.currentEditCell);
653                     var is_null = $this_field.data('value') === null;
654                     if (is_null) {
655                         $this_field.find('span').html('NULL');
656                         $this_field.addClass('null');
657                     } else {
658                         $this_field.removeClass('null');
659                         var value = data.isNeedToRecheck
660                             ? data.truncatableFieldValue
661                             : $this_field.data('value');
663                         // Truncates the text.
664                         $this_field.removeClass('truncated');
665                         if (PMA_commonParams.get('pftext') === 'P' && value.length > g.maxTruncatedLen) {
666                             $this_field.addClass('truncated');
667                             value = value.substring(0, g.maxTruncatedLen) + '...';
668                         }
670                         //Add <br> before carriage return.
671                         new_html = escapeHtml(value);
672                         new_html = new_html.replace(/\n/g, '<br>\n');
674                         //remove decimal places if column type not supported
675                         if (($this_field.attr('data-decimals') == 0) && ( $this_field.attr('data-type').indexOf('time') != -1)) {
676                             new_html = new_html.substring(0, new_html.indexOf('.'));
677                         }
679                         //remove addtional decimal places
680                         if (($this_field.attr('data-decimals') > 0) && ( $this_field.attr('data-type').indexOf('time') != -1)){
681                             new_html = new_html.substring(0, new_html.length - (6 - $this_field.attr('data-decimals')));
682                         }
684                         var selector = 'span';
685                         if ($this_field.hasClass('hex') && $this_field.find('a').length) {
686                             selector = 'a';
687                         }
689                         // Updates the code keeping highlighting (if any).
690                         var $target = $this_field.find(selector);
691                         if (!PMA_updateCode($target, new_html, value)) {
692                             $target.html(new_html);
693                         }
694                     }
695                     if ($this_field.is('.bit')) {
696                         $this_field.find('span').text($this_field.data('value'));
697                     }
698                 }
699                 if (data.transformations !== undefined) {
700                     $.each(data.transformations, function (cell_index, value) {
701                         var $this_field = $(g.t).find('.to_be_saved:eq(' + cell_index + ')');
702                         $this_field.find('span').html(value);
703                     });
704                 }
705                 if (data.relations !== undefined) {
706                     $.each(data.relations, function (cell_index, value) {
707                         var $this_field = $(g.t).find('.to_be_saved:eq(' + cell_index + ')');
708                         $this_field.find('span').html(value);
709                     });
710                 }
712                 // refresh the grid
713                 g.reposRsz();
714                 g.reposDrop();
715             }
717             // hide the cell editing area
718             $(g.cEdit).hide();
719             $(g.cEdit).find('.edit_box').blur();
720             g.isCellEditActive = false;
721             g.currentEditCell = null;
722             // destroy datepicker in edit area, if exist
723             var $dp = $(g.cEdit).find('.hasDatepicker');
724             if ($dp.length > 0) {
725                 $(document).bind('mousedown', $.datepicker._checkExternalClick);
726                 $dp.datepicker('destroy');
727                 // change the cursor in edit box back to normal
728                 // (the cursor become a hand pointer when we add datepicker)
729                 $(g.cEdit).find('.edit_box').css('cursor', 'inherit');
730             }
731         },
733         /**
734          * Show drop-down edit area when edit cell is focused.
735          */
736         showEditArea: function () {
737             if (!g.isCellEditActive) {   // make sure the edit area has not been shown
738                 g.isCellEditActive = true;
739                 g.isEditCellTextEditable = false;
740                 /**
741                  * @var $td current edited cell
742                  */
743                 var $td = $(g.currentEditCell);
744                 /**
745                  * @var $editArea the editing area
746                  */
747                 var $editArea = $(g.cEdit).find('.edit_area');
748                 /**
749                  * @var where_clause WHERE clause for the edited cell
750                  */
751                 var where_clause = $td.parent('tr').find('.where_clause').val();
752                 /**
753                  * @var field_name  String containing the name of this field.
754                  * @see getFieldName()
755                  */
756                 var field_name = getFieldName($(t), $td);
757                 /**
758                  * @var relation_curr_value String current value of the field (for fields that are foreign keyed).
759                  */
760                 var relation_curr_value = $td.text();
761                 /**
762                  * @var relation_key_or_display_column String relational key if in 'Relational display column' mode,
763                  * relational display column if in 'Relational key' mode (for fields that are foreign keyed).
764                  */
765                 var relation_key_or_display_column = $td.find('a').attr('title');
766                 /**
767                  * @var curr_value String current value of the field (for fields that are of type enum or set).
768                  */
769                 var curr_value = $td.find('span').text();
771                 // empty all edit area, then rebuild it based on $td classes
772                 $editArea.empty();
774                 // remember this instead of testing more than once
775                 var is_null = $td.is('.null');
777                 // add goto link, if this cell contains a link
778                 if ($td.find('a').length > 0) {
779                     var gotoLink = document.createElement('div');
780                     gotoLink.className = 'goto_link';
781                     $(gotoLink).append(g.gotoLinkText + ' ').append($td.find('a').clone());
782                     $editArea.append(gotoLink);
783                 }
785                 g.wasEditedCellNull = false;
786                 if ($td.is(':not(.not_null)')) {
787                     // append a null checkbox
788                     $editArea.append('<div class="null_div">Null:<input type="checkbox"></div>');
790                     var $checkbox = $editArea.find('.null_div input');
791                     // check if current <td> is NULL
792                     if (is_null) {
793                         $checkbox.prop('checked', true);
794                         g.wasEditedCellNull = true;
795                     }
797                     // if the select/editor is changed un-check the 'checkbox_null_<field_name>_<row_index>'.
798                     if ($td.is('.enum, .set')) {
799                         $editArea.on('change', 'select', function (e) {
800                             $checkbox.prop('checked', false);
801                         });
802                     } else if ($td.is('.relation')) {
803                         $editArea.on('change', 'select', function (e) {
804                             $checkbox.prop('checked', false);
805                         });
806                         $editArea.on('click', '.browse_foreign', function (e) {
807                             $checkbox.prop('checked', false);
808                         });
809                     } else {
810                         $(g.cEdit).on('keypress change', '.edit_box', function (e) {
811                             $checkbox.prop('checked', false);
812                         });
813                         // Capture ctrl+v (on IE and Chrome)
814                         $(g.cEdit).on('keydown', '.edit_box', function (e) {
815                             if (e.ctrlKey && e.which == 86) {
816                                 $checkbox.prop('checked', false);
817                             }
818                         });
819                         $editArea.on('keydown', 'textarea', function (e) {
820                             $checkbox.prop('checked', false);
821                         });
822                     }
824                     // if null checkbox is clicked empty the corresponding select/editor.
825                     $checkbox.click(function (e) {
826                         if ($td.is('.enum')) {
827                             $editArea.find('select').val('');
828                         } else if ($td.is('.set')) {
829                             $editArea.find('select').find('option').each(function () {
830                                 var $option = $(this);
831                                 $option.prop('selected', false);
832                             });
833                         } else if ($td.is('.relation')) {
834                             // if the dropdown is there to select the foreign value
835                             if ($editArea.find('select').length > 0) {
836                                 $editArea.find('select').val('');
837                             }
838                         } else {
839                             $editArea.find('textarea').val('');
840                         }
841                         $(g.cEdit).find('.edit_box').val('');
842                     });
843                 }
845                 //reset the position of the edit_area div after closing datetime picker
846                 $(g.cEdit).find('.edit_area').css({'top' :'0','position':''});
848                 if ($td.is('.relation')) {
849                     //handle relations
850                     $editArea.addClass('edit_area_loading');
852                     // initialize the original data
853                     $td.data('original_data', null);
855                     /**
856                      * @var post_params Object containing parameters for the POST request
857                      */
858                     var post_params = {
859                         'ajax_request' : true,
860                         'get_relational_values' : true,
861                         'server' : g.server,
862                         'db' : g.db,
863                         'table' : g.table,
864                         'column' : field_name,
865                         'token' : g.token,
866                         'curr_value' : relation_curr_value,
867                         'relation_key_or_display_column' : relation_key_or_display_column
868                     };
870                     g.lastXHR = $.post('sql.php', post_params, function (data) {
871                         g.lastXHR = null;
872                         $editArea.removeClass('edit_area_loading');
873                         if ($(data.dropdown).is('select')) {
874                             // save original_data
875                             var value = $(data.dropdown).val();
876                             $td.data('original_data', value);
877                             // update the text input field, in case where the "Relational display column" is checked
878                             $(g.cEdit).find('.edit_box').val(value);
879                         }
881                         $editArea.append(data.dropdown);
882                         $editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
884                         // for 'Browse foreign values' options,
885                         // hide the value next to 'Browse foreign values' link
886                         $editArea.find('span.curr_value').hide();
887                         // handle update for new values selected from new window
888                         $editArea.find('span.curr_value').change(function () {
889                             $(g.cEdit).find('.edit_box').val($(this).text());
890                         });
891                     }); // end $.post()
893                     $editArea.show();
894                     $editArea.on('change', 'select', function (e) {
895                         $(g.cEdit).find('.edit_box').val($(this).val());
896                     });
897                     g.isEditCellTextEditable = true;
898                 }
899                 else if ($td.is('.enum')) {
900                     //handle enum fields
901                     $editArea.addClass('edit_area_loading');
903                     /**
904                      * @var post_params Object containing parameters for the POST request
905                      */
906                     var post_params = {
907                         'ajax_request' : true,
908                         'get_enum_values' : true,
909                         'server' : g.server,
910                         'db' : g.db,
911                         'table' : g.table,
912                         'column' : field_name,
913                         'token' : g.token,
914                         'curr_value' : curr_value
915                     };
916                     g.lastXHR = $.post('sql.php', post_params, function (data) {
917                         g.lastXHR = null;
918                         $editArea.removeClass('edit_area_loading');
919                         $editArea.append(data.dropdown);
920                         $editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
921                     }); // end $.post()
923                     $editArea.show();
924                     $editArea.on('change', 'select', function (e) {
925                         $(g.cEdit).find('.edit_box').val($(this).val());
926                     });
927                 }
928                 else if ($td.is('.set')) {
929                     //handle set fields
930                     $editArea.addClass('edit_area_loading');
932                     /**
933                      * @var post_params Object containing parameters for the POST request
934                      */
935                     var post_params = {
936                         'ajax_request' : true,
937                         'get_set_values' : true,
938                         'server' : g.server,
939                         'db' : g.db,
940                         'table' : g.table,
941                         'column' : field_name,
942                         'token' : g.token,
943                         'curr_value' : curr_value
944                     };
946                     g.lastXHR = $.post('sql.php', post_params, function (data) {
947                         g.lastXHR = null;
948                         $editArea.removeClass('edit_area_loading');
949                         $editArea.append(data.select);
950                         $editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
951                     }); // end $.post()
953                     $editArea.show();
954                     $editArea.on('change', 'select', function (e) {
955                         $(g.cEdit).find('.edit_box').val($(this).val());
956                     });
957                 }
958                 else if ($td.is('.truncated, .transformed')) {
959                     if ($td.is('.to_be_saved')) {   // cell has been edited
960                         var value = $td.data('value');
961                         $(g.cEdit).find('.edit_box').val(value);
962                         $editArea.append('<textarea></textarea>');
963                         $editArea.find('textarea').val(value);
964                         $editArea
965                             .on('keyup', 'textarea', function (e) {
966                                 $(g.cEdit).find('.edit_box').val($(this).val());
967                             });
968                         $(g.cEdit).on('keyup', '.edit_box', function (e) {
969                             $editArea.find('textarea').val($(this).val());
970                         });
971                         $editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
972                     } else {
973                         //handle truncated/transformed values values
974                         $editArea.addClass('edit_area_loading');
976                         // initialize the original data
977                         $td.data('original_data', null);
979                         /**
980                          * @var sql_query   String containing the SQL query used to retrieve value of truncated/transformed data
981                          */
982                         var sql_query = 'SELECT `' + field_name + '` FROM `' + g.table + '` WHERE ' + PMA_urldecode(where_clause);
984                         // Make the Ajax call and get the data, wrap it and insert it
985                         g.lastXHR = $.post('sql.php', {
986                             'token' : g.token,
987                             'server' : g.server,
988                             'db' : g.db,
989                             'ajax_request' : true,
990                             'sql_query' : sql_query,
991                             'grid_edit' : true
992                         }, function (data) {
993                             g.lastXHR = null;
994                             $editArea.removeClass('edit_area_loading');
995                             if (typeof data !== 'undefined' && data.success === true) {
996                                 $td.data('original_data', data.value);
997                                 $(g.cEdit).find('.edit_box').val(data.value);
998                                 $editArea.append('<textarea></textarea>');
999                                 $editArea.find('textarea').val(data.value);
1000                                 $editArea
1001                                     .on('keyup', 'textarea', function (e) {
1002                                         $(g.cEdit).find('.edit_box').val($(this).val());
1003                                     });
1004                                 $(g.cEdit).on('keyup', '.edit_box', function (e) {
1005                                     $editArea.find('textarea').val($(this).val());
1006                                 });
1007                                 $editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
1008                             } else {
1009                                 PMA_ajaxShowMessage(data.error, false);
1010                             }
1011                         }); // end $.post()
1012                         $editArea.show();
1013                     }
1014                     g.isEditCellTextEditable = true;
1015                 } else if ($td.is('.timefield, .datefield, .datetimefield, .timestampfield')) {
1016                     var $input_field = $(g.cEdit).find('.edit_box');
1018                     // remember current datetime value in $input_field, if it is not null
1019                     var current_datetime_value = !is_null ? $input_field.val() : '';
1020                     var datetime_value = current_datetime_value;
1022                     var showMillisec = false;
1023                     var showMicrosec = false;
1024                     var timeFormat = 'HH:mm:ss';
1025                     // check for decimal places of seconds
1026                     if (($td.attr('data-decimals') > 0) && ($td.attr('data-type').indexOf('time') != -1)){
1027                         if (datetime_value && datetime_value.indexOf('.') === false) {
1028                             datetime_value += '.';
1029                         }
1030                         if ($td.attr('data-decimals') > 3) {
1031                             showMillisec = true;
1032                             showMicrosec = true;
1033                             timeFormat = 'HH:mm:ss.lc';
1035                             if (datetime_value) {
1036                                 datetime_value += '000000';
1037                                 var datetime_value = datetime_value.substring(0, datetime_value.indexOf('.') + 7);
1038                                 $input_field.val(datetime_value);
1039                             }
1040                         } else {
1041                             showMillisec = true;
1042                             timeFormat = 'HH:mm:ss.l';
1044                             if (datetime_value) {
1045                                 datetime_value += '000';
1046                                 var datetime_value = datetime_value.substring(0, datetime_value.indexOf('.') + 4);
1047                                 $input_field.val(datetime_value);
1048                             }
1049                         }
1050                     }
1052                     // add datetime picker
1053                     PMA_addDatepicker($input_field, $td.attr('data-type'), {
1054                         showMillisec: showMillisec,
1055                         showMicrosec: showMicrosec,
1056                         timeFormat: timeFormat
1057                     });
1059                     $input_field.datepicker("show");
1060                     // unbind the mousedown event to prevent the problem of
1061                     // datepicker getting closed, needs to be checked for any
1062                     // change in names when updating
1063                     $(document).unbind('mousedown', $.datepicker._checkExternalClick);
1065                     //move ui-datepicker-div inside cEdit div
1066                     var datepicker_div = $('#ui-datepicker-div');
1067                     datepicker_div.css({'top': 0, 'left': 0, 'position': 'relative'});
1068                     $(g.cEdit).append(datepicker_div);
1070                     if (is_null){
1071                         $(g.cEdit).find('.edit_area').hide();
1072                     }
1074                     // cancel any click on the datepicker element
1075                     $editArea.find('> *').click(function (e) {
1076                         e.stopPropagation();
1077                     });
1079                     g.isEditCellTextEditable = true;
1080                 } else {
1081                     g.isEditCellTextEditable = true;
1082                     // only append edit area hint if there is a null checkbox
1083                     if ($editArea.children().length > 0) {
1084                         $editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
1085                     }
1086                 }
1087                 if ($editArea.children().length > 0 && !is_null) {
1088                     $editArea.show();
1089                 }
1090             }
1091         },
1093         /**
1094          * Post the content of edited cell.
1095          *
1096          * @param field Optional, this object contains a boolean named move (true, if called from move* functions)
1097          *              and a <td> to which the grid_edit should move
1098          */
1099         postEditedCell: function (options) {
1100             if (g.isSaving) {
1101                 return;
1102             }
1103             g.isSaving = true;
1104             /**
1105              * @var relation_fields Array containing the name/value pairs of relational fields
1106              */
1107             var relation_fields = {};
1108             /**
1109              * @var relational_display string 'K' if relational key, 'D' if relational display column
1110              */
1111             var relational_display = $(g.o).find("input[name=relational_display]:checked").val();
1112             /**
1113              * @var transform_fields    Array containing the name/value pairs for transformed fields
1114              */
1115             var transform_fields = {};
1116             /**
1117              * @var transformation_fields   Boolean, if there are any transformed fields in the edited cells
1118              */
1119             var transformation_fields = false;
1120             /**
1121              * @var full_sql_query String containing the complete SQL query to update this table
1122              */
1123             var full_sql_query = '';
1124             /**
1125              * @var rel_fields_list  String, url encoded representation of {@link relations_fields}
1126              */
1127             var rel_fields_list = '';
1128             /**
1129              * @var transform_fields_list  String, url encoded representation of {@link transform_fields}
1130              */
1131             var transform_fields_list = '';
1132             /**
1133              * @var where_clause Array containing where clause for updated fields
1134              */
1135             var full_where_clause = [];
1136             /**
1137              * @var is_unique   Boolean, whether the rows in this table is unique or not
1138              */
1139             var is_unique = $(g.t).find('td.edit_row_anchor').is('.nonunique') ? 0 : 1;
1140             /**
1141              * multi edit variables
1142              */
1143             var me_fields_name = [];
1144             var me_fields_type = [];
1145             var me_fields = [];
1146             var me_fields_null = [];
1148             // alert user if edited table is not unique
1149             if (!is_unique) {
1150                 alert(g.alertNonUnique);
1151             }
1153             // loop each edited row
1154             $(g.t).find('td.to_be_saved').parents('tr').each(function () {
1155                 var $tr = $(this);
1156                 var where_clause = $tr.find('.where_clause').val();
1157                 if (typeof where_clause === 'undefined') {
1158                     where_clause = '';
1159                 }
1160                 full_where_clause.push(PMA_urldecode(where_clause));
1161                 var condition_array = jQuery.parseJSON($tr.find('.condition_array').val());
1163                 /**
1164                  * multi edit variables, for current row
1165                  * @TODO array indices are still not correct, they should be md5 of field's name
1166                  */
1167                 var fields_name = [];
1168                 var fields_type = [];
1169                 var fields = [];
1170                 var fields_null = [];
1172                 // loop each edited cell in a row
1173                 $tr.find('.to_be_saved').each(function () {
1174                     /**
1175                      * @var $this_field    Object referring to the td that is being edited
1176                      */
1177                     var $this_field = $(this);
1179                     /**
1180                      * @var field_name  String containing the name of this field.
1181                      * @see getFieldName()
1182                      */
1183                     var field_name = getFieldName($(g.t), $this_field);
1185                     /**
1186                      * @var this_field_params   Array temporary storage for the name/value of current field
1187                      */
1188                     var this_field_params = {};
1190                     if ($this_field.is('.transformed')) {
1191                         transformation_fields =  true;
1192                     }
1193                     this_field_params[field_name] = $this_field.data('value');
1195                     /**
1196                      * @var is_null String capturing whether 'checkbox_null_<field_name>_<row_index>' is checked.
1197                      */
1198                     var is_null = this_field_params[field_name] === null;
1200                     fields_name.push(field_name);
1202                     if (is_null) {
1203                         fields_null.push('on');
1204                         fields.push('');
1205                     } else {
1206                         if ($this_field.is('.bit')) {
1207                             fields_type.push('bit');
1208                         } else if ($this_field.hasClass('hex')) {
1209                             fields_type.push('hex');
1210                         }
1211                         fields_null.push('');
1212                         fields.push($this_field.data('value'));
1214                         var cell_index = $this_field.index('.to_be_saved');
1215                         if ($this_field.is(":not(.relation, .enum, .set, .bit)")) {
1216                             if ($this_field.is('.transformed')) {
1217                                 transform_fields[cell_index] = {};
1218                                 $.extend(transform_fields[cell_index], this_field_params);
1219                             }
1220                         } else if ($this_field.is('.relation')) {
1221                             relation_fields[cell_index] = {};
1222                             $.extend(relation_fields[cell_index], this_field_params);
1223                         }
1224                     }
1225                     // check if edited field appears in WHERE clause
1226                     if (where_clause.indexOf(PMA_urlencode(field_name)) > -1) {
1227                         var field_str = '`' + g.table + '`.' + '`' + field_name + '`';
1228                         for (var field in condition_array) {
1229                             if (field.indexOf(field_str) > -1) {
1230                                 condition_array[field] = is_null ? 'IS NULL' : "= '" + this_field_params[field_name].replace(/'/g, "''") + "'";
1231                                 break;
1232                             }
1233                         }
1234                     }
1236                 }); // end of loop for every edited cells in a row
1238                 // save new_clause
1239                 var new_clause = '';
1240                 for (var field in condition_array) {
1241                     new_clause += field + ' ' + condition_array[field] + ' AND ';
1242                 }
1243                 new_clause = new_clause.substring(0, new_clause.length - 5); // remove the last AND
1244                 new_clause = PMA_urlencode(new_clause);
1245                 $tr.data('new_clause', new_clause);
1246                 // save condition_array
1247                 $tr.find('.condition_array').val(JSON.stringify(condition_array));
1249                 me_fields_name.push(fields_name);
1250                 me_fields_type.push(fields_type);
1251                 me_fields.push(fields);
1252                 me_fields_null.push(fields_null);
1254             }); // end of loop for every edited rows
1256             rel_fields_list = $.param(relation_fields);
1257             transform_fields_list = $.param(transform_fields);
1259             // Make the Ajax post after setting all parameters
1260             /**
1261              * @var post_params Object containing parameters for the POST request
1262              */
1263             var post_params = {'ajax_request' : true,
1264                             'sql_query' : full_sql_query,
1265                             'token' : g.token,
1266                             'server' : g.server,
1267                             'db' : g.db,
1268                             'table' : g.table,
1269                             'clause_is_unique' : is_unique,
1270                             'where_clause' : full_where_clause,
1271                             'fields[multi_edit]' : me_fields,
1272                             'fields_name[multi_edit]' : me_fields_name,
1273                             'fields_type[multi_edit]' : me_fields_type,
1274                             'fields_null[multi_edit]' : me_fields_null,
1275                             'rel_fields_list' : rel_fields_list,
1276                             'do_transformations' : transformation_fields,
1277                             'transform_fields_list' : transform_fields_list,
1278                             'relational_display' : relational_display,
1279                             'goto' : 'sql.php',
1280                             'submit_type' : 'save'
1281                           };
1283             if (!g.saveCellsAtOnce) {
1284                 $(g.cEdit).find('*').prop('disabled', true);
1285                 $(g.cEdit).find('.edit_box').addClass('edit_box_posting');
1286             } else {
1287                 $(g.o).find('div.save_edited').addClass('saving_edited_data')
1288                     .find('input').prop('disabled', true);    // disable the save button
1289             }
1291             $.ajax({
1292                 type: 'POST',
1293                 url: 'tbl_replace.php',
1294                 data: post_params,
1295                 success:
1296                     function (data) {
1297                         g.isSaving = false;
1298                         if (!g.saveCellsAtOnce) {
1299                             $(g.cEdit).find('*').removeProp('disabled');
1300                             $(g.cEdit).find('.edit_box').removeClass('edit_box_posting');
1301                         } else {
1302                             $(g.o).find('div.save_edited').removeClass('saving_edited_data')
1303                                 .find('input').removeProp('disabled');  // enable the save button back
1304                         }
1305                         if (typeof data !== 'undefined' && data.success === true) {
1306                             if (typeof options === 'undefined' || ! options.move) {
1307                                 PMA_ajaxShowMessage(data.message);
1308                             }
1310                             // update where_clause related data in each edited row
1311                             $(g.t).find('td.to_be_saved').parents('tr').each(function () {
1312                                 var new_clause = $(this).data('new_clause');
1313                                 var $where_clause = $(this).find('.where_clause');
1314                                 var old_clause = $where_clause.val();
1315                                 var decoded_old_clause = PMA_urldecode(old_clause);
1316                                 var decoded_new_clause = PMA_urldecode(new_clause);
1318                                 $where_clause.val(new_clause);
1319                                 // update Edit, Copy, and Delete links also
1320                                 $(this).find('a').each(function () {
1321                                     $(this).attr('href', $(this).attr('href').replace(old_clause, new_clause));
1322                                     // update delete confirmation in Delete link
1323                                     if ($(this).attr('href').indexOf('DELETE') > -1) {
1324                                         $(this).removeAttr('onclick')
1325                                             .unbind('click')
1326                                             .bind('click', function () {
1327                                                 return confirmLink(this, 'DELETE FROM `' + g.db + '`.`' + g.table + '` WHERE ' +
1328                                                        decoded_new_clause + (is_unique ? '' : ' LIMIT 1'));
1329                                             });
1330                                     }
1331                                 });
1332                                 // update the multi edit checkboxes
1333                                 $(this).find('input[type=checkbox]').each(function () {
1334                                     var $checkbox = $(this);
1335                                     var checkbox_name = $checkbox.attr('name');
1336                                     var checkbox_value = $checkbox.val();
1338                                     $checkbox.attr('name', checkbox_name.replace(old_clause, new_clause));
1339                                     $checkbox.val(checkbox_value.replace(decoded_old_clause, decoded_new_clause));
1340                                 });
1341                             });
1342                             // update the display of executed SQL query command
1343                             if (typeof data.sql_query != 'undefined') {
1344                                 //extract query box
1345                                 var $result_query = $($.parseHTML(data.sql_query));
1346                                 var sqlOuter = $result_query.find('.sqlOuter').wrap('<p>').parent().html();
1347                                 var tools = $result_query.find('.tools').wrap('<p>').parent().html();
1348                                 // sqlOuter and tools will not be present if 'Show SQL queries' configuration is off
1349                                 if (typeof sqlOuter != 'undefined' && typeof tools != 'undefined') {
1350                                     var $existing_query = $(g.o).find('.result_query');
1351                                     // If two query box exists update query in second else add a second box
1352                                     if ($existing_query.find('div.sqlOuter').length > 1) {
1353                                         $existing_query.children(":nth-child(4)").remove();
1354                                         $existing_query.children(":nth-child(4)").remove();
1355                                         $existing_query.append(sqlOuter + tools);
1356                                     } else {
1357                                         $existing_query.append(sqlOuter + tools);
1358                                     }
1359                                     PMA_highlightSQL($existing_query);
1360                                 }
1361                             }
1362                             // hide and/or update the successfully saved cells
1363                             g.hideEditCell(true, data);
1365                             // remove the "Save edited cells" button
1366                             $(g.o).find('div.save_edited').hide();
1367                             // update saved fields
1368                             $(g.t).find('.to_be_saved')
1369                                 .removeClass('to_be_saved')
1370                                 .data('value', null)
1371                                 .data('original_data', null);
1373                             g.isCellEdited = false;
1374                         } else {
1375                             PMA_ajaxShowMessage(data.error, false);
1376                             if (!g.saveCellsAtOnce) {
1377                                 $(g.t).find('.to_be_saved')
1378                                     .removeClass('to_be_saved');
1379                             }
1380                         }
1381                     }
1382             }).done(function(){
1383                 if (options !== undefined && options.move) {
1384                     g.showEditCell(options.cell);
1385                 }
1386             }); // end $.ajax()
1387         },
1389         /**
1390          * Save edited cell, so it can be posted later.
1391          */
1392         saveEditedCell: function () {
1393             /**
1394              * @var $this_field    Object referring to the td that is being edited
1395              */
1396             var $this_field = $(g.currentEditCell);
1397             var $test_element = ''; // to test the presence of a element
1399             var need_to_post = false;
1401             /**
1402              * @var field_name  String containing the name of this field.
1403              * @see getFieldName()
1404              */
1405             var field_name = getFieldName($(g.t), $this_field);
1407             /**
1408              * @var this_field_params   Array temporary storage for the name/value of current field
1409              */
1410             var this_field_params = {};
1412             /**
1413              * @var is_null String capturing whether 'checkbox_null_<field_name>_<row_index>' is checked.
1414              */
1415             var is_null = $(g.cEdit).find('input:checkbox').is(':checked');
1416             var value;
1418             if ($(g.cEdit).find('.edit_area').is('.edit_area_loading')) {
1419                 // the edit area is still loading (retrieving cell data), no need to post
1420                 need_to_post = false;
1421             } else if (is_null) {
1422                 if (!g.wasEditedCellNull) {
1423                     this_field_params[field_name] = null;
1424                     need_to_post = true;
1425                 }
1426             } else {
1427                 if ($this_field.is('.bit')) {
1428                     this_field_params[field_name] = $(g.cEdit).find('.edit_box').val();
1429                 } else if ($this_field.is('.set')) {
1430                     $test_element = $(g.cEdit).find('select');
1431                     this_field_params[field_name] = $test_element.map(function () {
1432                         return $(this).val();
1433                     }).get().join(",");
1434                 } else if ($this_field.is('.relation, .enum')) {
1435                     // for relation and enumeration, take the results from edit box value,
1436                     // because selected value from drop-down, new window or multiple
1437                     // selection list will always be updated to the edit box
1438                     this_field_params[field_name] = $(g.cEdit).find('.edit_box').val();
1439                 } else if ($this_field.hasClass('hex')) {
1440                     if ($(g.cEdit).find('.edit_box').val().match(/^[a-f0-9]*$/i) !== null) {
1441                         this_field_params[field_name] = $(g.cEdit).find('.edit_box').val();
1442                     } else {
1443                         var hexError = '<div class="error">' + PMA_messages.strEnterValidHex + '</div>';
1444                         PMA_ajaxShowMessage(hexError, false);
1445                         this_field_params[field_name] = PMA_getCellValue(g.currentEditCell);
1446                     }
1447                 } else {
1448                     this_field_params[field_name] = $(g.cEdit).find('.edit_box').val();
1449                 }
1450                 if (g.wasEditedCellNull || this_field_params[field_name] != PMA_getCellValue(g.currentEditCell)) {
1451                     need_to_post = true;
1452                 }
1453             }
1455             if (need_to_post) {
1456                 $(g.currentEditCell).addClass('to_be_saved')
1457                     .data('value', this_field_params[field_name]);
1458                 if (g.saveCellsAtOnce) {
1459                     $(g.o).find('div.save_edited').show();
1460                 }
1461                 g.isCellEdited = true;
1462             }
1464             return need_to_post;
1465         },
1467         /**
1468          * Save or post currently edited cell, depending on the "saveCellsAtOnce" configuration.
1469          *
1470          * @param field Optional, this object contains a boolean named move (true, if called from move* functions)
1471          *              and a <td> to which the grid_edit should move
1472          */
1473         saveOrPostEditedCell: function (options) {
1474             var saved = g.saveEditedCell();
1475             // Check if $cfg['SaveCellsAtOnce'] is false
1476             if (!g.saveCellsAtOnce) {
1477                 // Check if need_to_post is true
1478                 if (saved) {
1479                     // Check if this function called from 'move' functions
1480                     if (options !== undefined && options.move) {
1481                         g.postEditedCell(options);
1482                     } else {
1483                         g.postEditedCell();
1484                     }
1485                 // need_to_post is false
1486                 } else {
1487                     // Check if this function called from 'move' functions
1488                     if (options !== undefined && options.move) {
1489                         g.hideEditCell(true);
1490                         g.showEditCell(options.cell);
1491                     // NOT called from 'move' functions
1492                     } else {
1493                         g.hideEditCell(true);
1494                     }
1495                 }
1496             // $cfg['SaveCellsAtOnce'] is true
1497             } else {
1498                 // If need_to_post
1499                 if (saved) {
1500                     // If this function called from 'move' functions
1501                     if (options !== undefined && options.move) {
1502                         g.hideEditCell(true, true, false, options);
1503                         g.showEditCell(options.cell);
1504                     // NOT called from 'move' functions
1505                     } else {
1506                         g.hideEditCell(true, true);
1507                     }
1508                 } else {
1509                     // If this function called from 'move' functions
1510                     if (options !== undefined && options.move) {
1511                         g.hideEditCell(true, false, false, options);
1512                         g.showEditCell(options.cell);
1513                     // NOT called from 'move' functions
1514                     } else {
1515                         g.hideEditCell(true);
1516                     }
1517                 }
1518             }
1519         },
1521         /**
1522          * Initialize column resize feature.
1523          */
1524         initColResize: function () {
1525             // create column resizer div
1526             g.cRsz = document.createElement('div');
1527             g.cRsz.className = 'cRsz';
1529             // get data columns in the first row of the table
1530             var $firstRowCols = $(g.t).find('tr:first th.draggable');
1532             // create column borders
1533             $firstRowCols.each(function () {
1534                 var cb = document.createElement('div'); // column border
1535                 $(cb).addClass('colborder')
1536                     .mousedown(function (e) {
1537                         g.dragStartRsz(e, this);
1538                     });
1539                 $(g.cRsz).append(cb);
1540             });
1541             g.reposRsz();
1543             // attach to global div
1544             $(g.gDiv).prepend(g.cRsz);
1545         },
1547         /**
1548          * Initialize column reordering feature.
1549          */
1550         initColReorder: function () {
1551             g.cCpy = document.createElement('div');     // column copy, to store copy of dragged column header
1552             g.cPointer = document.createElement('div'); // column pointer, used when reordering column
1554             // adjust g.cCpy
1555             g.cCpy.className = 'cCpy';
1556             $(g.cCpy).hide();
1558             // adjust g.cPointer
1559             g.cPointer.className = 'cPointer';
1560             $(g.cPointer).css('visibility', 'hidden');  // set visibility to hidden instead of calling hide() to force browsers to cache the image in cPointer class
1562             // assign column reordering hint
1563             g.reorderHint = PMA_messages.strColOrderHint;
1565             // get data columns in the first row of the table
1566             var $firstRowCols = $(g.t).find('tr:first th.draggable');
1568             // initialize column order
1569             $col_order = $(g.o).find('.col_order');   // check if column order is passed from PHP
1570             if ($col_order.length > 0) {
1571                 g.colOrder = $col_order.val().split(',');
1572                 for (var i = 0; i < g.colOrder.length; i++) {
1573                     g.colOrder[i] = parseInt(g.colOrder[i], 10);
1574                 }
1575             } else {
1576                 g.colOrder = [];
1577                 for (var i = 0; i < $firstRowCols.length; i++) {
1578                     g.colOrder.push(i);
1579                 }
1580             }
1582             // register events
1583             $(g.t).find('th.draggable')
1584                 .mousedown(function (e) {
1585                     $(g.o).addClass("turnOffSelect");
1586                     if (g.visibleHeadersCount > 1) {
1587                         g.dragStartReorder(e, this);
1588                     }
1589                 })
1590                 .mouseenter(function (e) {
1591                     if (g.visibleHeadersCount > 1) {
1592                         $(this).css('cursor', 'move');
1593                     } else {
1594                         $(this).css('cursor', 'inherit');
1595                     }
1596                 })
1597                 .mouseleave(function (e) {
1598                     g.showReorderHint = false;
1599                     $(this).tooltip("option", {
1600                         content: g.updateHint()
1601                     });
1602                 })
1603                 .dblclick(function (e) {
1604                     e.preventDefault();
1605                     $("<div/>")
1606                     .prop("title", PMA_messages.strColNameCopyTitle)
1607                     .addClass("modal-copy")
1608                     .text(PMA_messages.strColNameCopyText)
1609                     .append(
1610                         $("<input/>")
1611                         .prop("readonly", true)
1612                         .val($(this).data("column"))
1613                         )
1614                     .dialog({
1615                         resizable: false,
1616                         modal: true
1617                     })
1618                     .find("input").focus().select();
1619                 });
1620             $(g.t).find('th.draggable a')
1621                 .dblclick(function (e) {
1622                     e.stopPropagation();
1623                 });
1624             // restore column order when the restore button is clicked
1625             $(g.o).find('div.restore_column').click(function () {
1626                 g.restoreColOrder();
1627             });
1629             // attach to global div
1630             $(g.gDiv).append(g.cPointer);
1631             $(g.gDiv).append(g.cCpy);
1633             // prevent default "dragstart" event when dragging a link
1634             $(g.t).find('th a').bind('dragstart', function () {
1635                 return false;
1636             });
1638             // refresh the restore column button state
1639             g.refreshRestoreButton();
1640         },
1642         /**
1643          * Initialize column visibility feature.
1644          */
1645         initColVisib: function () {
1646             g.cDrop = document.createElement('div');    // column drop-down arrows
1647             g.cList = document.createElement('div');    // column visibility list
1649             // adjust g.cDrop
1650             g.cDrop.className = 'cDrop';
1652             // adjust g.cList
1653             g.cList.className = 'cList';
1654             $(g.cList).hide();
1656             // assign column visibility related hints
1657             g.showAllColText = PMA_messages.strShowAllCol;
1659             // get data columns in the first row of the table
1660             var $firstRowCols = $(g.t).find('tr:first th.draggable');
1662             var i;
1663             // initialize column visibility
1664             var $col_visib = $(g.o).find('.col_visib');   // check if column visibility is passed from PHP
1665             if ($col_visib.length > 0) {
1666                 g.colVisib = $col_visib.val().split(',');
1667                 for (i = 0; i < g.colVisib.length; i++) {
1668                     g.colVisib[i] = parseInt(g.colVisib[i], 10);
1669                 }
1670             } else {
1671                 g.colVisib = [];
1672                 for (i = 0; i < $firstRowCols.length; i++) {
1673                     g.colVisib.push(1);
1674                 }
1675             }
1677             // make sure we have more than one column
1678             if ($firstRowCols.length > 1) {
1679                 var $colVisibTh = $(g.t).find('th:not(.draggable)');
1680                 PMA_tooltip(
1681                     $colVisibTh,
1682                     'th',
1683                     PMA_messages.strColVisibHint
1684                 );
1686                 // create column visibility drop-down arrow(s)
1687                 $colVisibTh.each(function () {
1688                         var $th = $(this);
1689                         var cd = document.createElement('div'); // column drop-down arrow
1690                         var pos = $th.position();
1691                         $(cd).addClass('coldrop')
1692                             .click(function () {
1693                                 if (g.cList.style.display == 'none') {
1694                                     g.showColList(this);
1695                                 } else {
1696                                     g.hideColList();
1697                                 }
1698                             });
1699                         $(g.cDrop).append(cd);
1700                     });
1702                 // add column visibility control
1703                 g.cList.innerHTML = '<div class="lDiv"></div>';
1704                 var $listDiv = $(g.cList).find('div');
1706                 var tempClick = function () {
1707                     if (g.toggleCol($(this).index())) {
1708                         g.afterToggleCol();
1709                     }
1710                 };
1712                 for (i = 0; i < $firstRowCols.length; i++) {
1713                     var currHeader = $firstRowCols[i];
1714                     var listElmt = document.createElement('div');
1715                     $(listElmt).text($(currHeader).text())
1716                         .prepend('<input type="checkbox" ' + (g.colVisib[i] ? 'checked="checked" ' : '') + '/>');
1717                     $listDiv.append(listElmt);
1718                     // add event on click
1719                     $(listElmt).click(tempClick);
1720                 }
1721                 // add "show all column" button
1722                 var showAll = document.createElement('div');
1723                 $(showAll).addClass('showAllColBtn')
1724                     .text(g.showAllColText);
1725                 $(g.cList).append(showAll);
1726                 $(showAll).click(function () {
1727                     g.showAllColumns();
1728                 });
1729                 // prepend "show all column" button at top if the list is too long
1730                 if ($firstRowCols.length > 10) {
1731                     var clone = showAll.cloneNode(true);
1732                     $(g.cList).prepend(clone);
1733                     $(clone).click(function () {
1734                         g.showAllColumns();
1735                     });
1736                 }
1737             }
1739             // hide column visibility list if we move outside the list
1740             $(g.t).find('td, th.draggable').mouseenter(function () {
1741                 g.hideColList();
1742             });
1744             // attach to global div
1745             $(g.gDiv).append(g.cDrop);
1746             $(g.gDiv).append(g.cList);
1748             // some adjustment
1749             g.reposDrop();
1750         },
1752         /**
1753          * Move currently Editing Cell to Up
1754          */
1755         moveUp: function(e) {
1756             e.preventDefault();
1757             var $this_field = $(g.currentEditCell);
1758             var field_name = getFieldName($(g.t), $this_field);
1760             var where_clause = $this_field.parents('tr').first().find('.where_clause').val();
1761             if (typeof where_clause === 'undefined') {
1762                 where_clause = '';
1763             }
1764             where_clause = PMA_urldecode(where_clause);
1765             var found = false;
1766             var $found_row;
1767             var $prev_row;
1768             var j = 0;
1770             $this_field.parents('tr').first().parents('tbody').children().each(function(){
1771                 if (PMA_urldecode($(this).find('.where_clause').val()) == where_clause) {
1772                     found = true;
1773                     $found_row = $(this);
1774                 }
1775                 if (!found) {
1776                     $prev_row = $(this);
1777                 }
1778             });
1780             var new_cell;
1782             if (found && $prev_row) {
1783                 $prev_row.children('td').each(function(){
1784                     if (getFieldName($(g.t), $(this)) == field_name) {
1785                         new_cell = this;
1786                     }
1787                 });
1788             }
1790             if (new_cell) {
1791                 g.hideEditCell(false, false, false, {move : true, cell : new_cell});
1792             }
1793         },
1795         /**
1796          * Move currently Editing Cell to Down
1797          */
1798         moveDown: function(e) {
1799             e.preventDefault();
1801             var $this_field = $(g.currentEditCell);
1802             var field_name = getFieldName($(g.t), $this_field);
1804             var where_clause = $this_field.parents('tr').first().find('.where_clause').val();
1805             if (typeof where_clause === 'undefined') {
1806                 where_clause = '';
1807             }
1808             where_clause = PMA_urldecode(where_clause);
1809             var found = false;
1810             var $found_row;
1811             var $next_row;
1812             var j = 0;
1813             var next_row_found = false;
1814             $this_field.parents('tr').first().parents('tbody').children().each(function(){
1815                 if (PMA_urldecode($(this).find('.where_clause').val()) == where_clause) {
1816                     found = true;
1817                     $found_row = $(this);
1818                 }
1819                 if (found) {
1820                     if (j >= 1 && ! next_row_found) {
1821                         $next_row = $(this);
1822                         next_row_found = true;
1823                     } else {
1824                         j++;
1825                     }
1826                 }
1827             });
1829             var new_cell;
1830             if (found && $next_row) {
1831                 $next_row.children('td').each(function(){
1832                     if (getFieldName($(g.t), $(this)) == field_name) {
1833                         new_cell = this;
1834                     }
1835                 });
1836             }
1838             if (new_cell) {
1839                 g.hideEditCell(false, false, false, {move : true, cell : new_cell});
1840             }
1841         },
1843         /**
1844          * Move currently Editing Cell to Left
1845          */
1846         moveLeft: function(e) {
1847             e.preventDefault();
1849             var $this_field = $(g.currentEditCell);
1850             var field_name = getFieldName($(g.t), $this_field);
1852             var where_clause = $this_field.parents('tr').first().find('.where_clause').val();
1853             if (typeof where_clause === 'undefined') {
1854                 where_clause = '';
1855             }
1856             where_clause = PMA_urldecode(where_clause);
1857             var found = false;
1858             var $found_row;
1859             var j = 0;
1860             $this_field.parents('tr').first().parents('tbody').children().each(function(){
1861                 if (PMA_urldecode($(this).find('.where_clause').val()) == where_clause) {
1862                     found = true;
1863                     $found_row = $(this);
1864                 }
1865             });
1867             var left_cell;
1868             var cell_found = false;
1869             if (found) {
1870                 $found_row.children('td.grid_edit').each(function(){
1871                     if (getFieldName($(g.t), $(this)) === field_name) {
1872                         cell_found = true;
1873                     }
1874                     if (!cell_found) {
1875                         left_cell = this;
1876                     }
1877                 });
1878             }
1880             if (left_cell) {
1881                 g.hideEditCell(false, false, false, {move : true, cell : left_cell});
1882             }
1883         },
1885         /**
1886          * Move currently Editing Cell to Right
1887          */
1888         moveRight: function(e) {
1889             e.preventDefault();
1891             var $this_field = $(g.currentEditCell);
1892             var field_name = getFieldName($(g.t), $this_field);
1894             var where_clause = $this_field.parents('tr').first().find('.where_clause').val();
1895             if (typeof where_clause === 'undefined') {
1896                 where_clause = '';
1897             }
1898             where_clause = PMA_urldecode(where_clause);
1899             var found = false;
1900             var $found_row;
1901             var j = 0;
1902             $this_field.parents('tr').first().parents('tbody').children().each(function(){
1903                 if (PMA_urldecode($(this).find('.where_clause').val()) == where_clause) {
1904                     found = true;
1905                     $found_row = $(this);
1906                 }
1907             });
1909             var right_cell;
1910             var cell_found = false;
1911             var next_cell_found = false;
1912             if (found) {
1913                 $found_row.children('td.grid_edit').each(function(){
1914                     if (getFieldName($(g.t), $(this)) === field_name) {
1915                         cell_found = true;
1916                     }
1917                     if (cell_found) {
1918                         if (j >= 1 && ! next_cell_found) {
1919                             right_cell = this;
1920                             next_cell_found = true;
1921                         } else {
1922                             j++;
1923                         }
1924                     }
1925                 });
1926             }
1928             if (right_cell) {
1929                 g.hideEditCell(false, false, false, {move : true, cell : right_cell});
1930             }
1931         },
1933         /**
1934          * Initialize grid editing feature.
1935          */
1936         initGridEdit: function () {
1938             function startGridEditing(e, cell) {
1939                 if (g.isCellEditActive) {
1940                     g.saveOrPostEditedCell();
1941                 } else {
1942                     g.showEditCell(cell);
1943                 }
1944                 e.stopPropagation();
1945             }
1947             function handleCtrlNavigation(e) {
1948                 if ((e.ctrlKey && e.which == 38 ) || (e.altKey && e.which == 38)) {
1949                     g.moveUp(e);
1950                 } else if ((e.ctrlKey && e.which == 40)  || (e.altKey && e.which == 40)) {
1951                     g.moveDown(e);
1952                 } else if ((e.ctrlKey && e.which == 37 ) || (e.altKey && e.which == 37)) {
1953                     g.moveLeft(e);
1954                 } else if ((e.ctrlKey && e.which == 39)  || (e.altKey && e.which == 39)) {
1955                     g.moveRight(e);
1956                 }
1957             }
1959             // create cell edit wrapper element
1960             g.cEditStd = document.createElement('div');
1961             g.cEdit = g.cEditStd;
1962             g.cEditTextarea = document.createElement('div');
1964             // adjust g.cEditStd
1965             g.cEditStd.className = 'cEdit';
1966             $(g.cEditStd).html('<input class="edit_box" rows="1" ></input><div class="edit_area" />');
1967             $(g.cEditStd).hide();
1969             // adjust g.cEdit
1970             g.cEditTextarea.className = 'cEdit';
1971             $(g.cEditTextarea).html('<textarea class="edit_box" rows="1" ></textarea><div class="edit_area" />');
1972             $(g.cEditTextarea).hide();
1974             // assign cell editing hint
1975             g.cellEditHint = PMA_messages.strCellEditHint;
1976             g.saveCellWarning = PMA_messages.strSaveCellWarning;
1977             g.alertNonUnique = PMA_messages.strAlertNonUnique;
1978             g.gotoLinkText = PMA_messages.strGoToLink;
1980             // initialize cell editing configuration
1981             g.saveCellsAtOnce = $(g.o).find('.save_cells_at_once').val();
1982             g.maxTruncatedLen = PMA_commonParams.get('LimitChars');
1984             // register events
1985             $(g.t).find('td.data.click1')
1986                 .click(function (e) {
1987                     startGridEditing(e, this);
1988                     // prevent default action when clicking on "link" in a table
1989                     if ($(e.target).is('.grid_edit a')) {
1990                         e.preventDefault();
1991                     }
1992                 });
1994             $(g.t).find('td.data.click2')
1995                 .click(function (e) {
1996                     var $cell = $(this);
1997                     // In the case of relational link, We want single click on the link
1998                     // to goto the link and double click to start grid-editing.
1999                     var $link = $(e.target);
2000                     if ($link.is('.grid_edit.relation a')) {
2001                         e.preventDefault();
2002                         // get the click count and increase
2003                         var clicks = $cell.data('clicks');
2004                         clicks = (typeof clicks === 'undefined') ? 1 : clicks + 1;
2006                         if (clicks == 1) {
2007                             // if there are no previous clicks,
2008                             // start the single click timer
2009                             var timer = setTimeout(function () {
2010                                 // temporarily remove ajax class so the page loader will not handle it,
2011                                 // submit and then add it back
2012                                 $link.removeClass('ajax');
2013                                 AJAX.requestHandler.call($link[0]);
2014                                 $link.addClass('ajax');
2015                                 $cell.data('clicks', 0);
2016                             }, 700);
2017                             $cell.data('clicks', clicks);
2018                             $cell.data('timer', timer);
2019                         } else {
2020                             // this is a double click, cancel the single click timer
2021                             // and make the click count 0
2022                             clearTimeout($cell.data('timer'));
2023                             $cell.data('clicks', 0);
2024                             // start grid-editing
2025                             startGridEditing(e, this);
2026                         }
2027                     }
2028                 })
2029                 .dblclick(function (e) {
2030                     if ($(e.target).is('.grid_edit a')) {
2031                         e.preventDefault();
2032                     } else {
2033                         startGridEditing(e, this);
2034                     }
2035                 });
2037             $(g.cEditStd).on('keydown', 'input.edit_box, select', handleCtrlNavigation);
2039             $(g.cEditStd).find('.edit_box').focus(function (e) {
2040                 g.showEditArea();
2041             });
2042             $(g.cEditStd).on('keydown', '.edit_box, select', function (e) {
2043                 if (e.which == 13) {
2044                     // post on pressing "Enter"
2045                     e.preventDefault();
2046                     g.saveOrPostEditedCell();
2047                 }
2048             });
2049             $(g.cEditStd).keydown(function (e) {
2050                 if (!g.isEditCellTextEditable) {
2051                     // prevent text editing
2052                     e.preventDefault();
2053                 }
2054             });
2056             $(g.cEditTextarea).on('keydown', 'textarea.edit_box, select', handleCtrlNavigation);
2058             $(g.cEditTextarea).find('.edit_box').focus(function (e) {
2059                 g.showEditArea();
2060             });
2061             $(g.cEditTextarea).on('keydown', '.edit_box, select', function (e) {
2062                 if (e.which == 13 && !e.shiftKey) {
2063                     // post on pressing "Enter"
2064                     e.preventDefault();
2065                     g.saveOrPostEditedCell();
2066                 }
2067             });
2068             $(g.cEditTextarea).keydown(function (e) {
2069                 if (!g.isEditCellTextEditable) {
2070                     // prevent text editing
2071                     e.preventDefault();
2072                 }
2073             });
2074             $('html').click(function (e) {
2075                 // hide edit cell if the click is not fromDat edit area
2076                 if ($(e.target).parents().index($(g.cEdit)) == -1 &&
2077                     !$(e.target).parents('.ui-datepicker-header').length &&
2078                     !$('.browse_foreign_modal.ui-dialog:visible').length
2079                 ) {
2080                     g.hideEditCell();
2081                 }
2082             }).keydown(function (e) {
2083                 if (e.which == 27 && g.isCellEditActive) {
2085                     // cancel on pressing "Esc"
2086                     g.hideEditCell(true);
2087                 }
2088             });
2089             $(g.o).find('div.save_edited').click(function () {
2090                 g.hideEditCell();
2091                 g.postEditedCell();
2092             });
2093             $(window).bind('beforeunload', function (e) {
2094                 if (g.isCellEdited) {
2095                     return g.saveCellWarning;
2096                 }
2097             });
2099             // attach to global div
2100             $(g.gDiv).append(g.cEditStd);
2101             $(g.gDiv).append(g.cEditTextarea);
2103             // add hint for grid editing feature when hovering "Edit" link in each table row
2104             if (PMA_messages.strGridEditFeatureHint !== undefined) {
2105                 PMA_tooltip(
2106                     $(g.t).find('.edit_row_anchor a'),
2107                     'a',
2108                     PMA_messages.strGridEditFeatureHint
2109                 );
2110             }
2111         }
2112     };
2114     /******************
2115      * Initialize grid
2116      ******************/
2118     // wrap all truncated data cells with span indicating the original length
2119     // todo update the original length after a grid edit
2120     $(t).find('td.data.truncated:not(:has(span))')
2121         .wrapInner(function() {
2122             return '<span title="' + PMA_messages.strOriginalLength + ' ' +
2123                 $(this).data('originallength') + '"></span>';
2124         });
2126     // wrap remaining cells, except actions cell, with span
2127     $(t).find('th, td:not(:has(span))')
2128         .wrapInner('<span />');
2130     // create grid elements
2131     g.gDiv = document.createElement('div');     // create global div
2133     // initialize the table variable
2134     g.t = t;
2136     // enclosing .sqlqueryresults div
2137     g.o = $(t).parents('.sqlqueryresults');
2139     // get data columns in the first row of the table
2140     var $firstRowCols = $(t).find('tr:first th.draggable');
2142     // initialize visible headers count
2143     g.visibleHeadersCount = $firstRowCols.filter(':visible').length;
2145     // assign first column (actions) span
2146     if (! $(t).find('tr:first th:first').hasClass('draggable')) {  // action header exist
2147         g.actionSpan = $(t).find('tr:first th:first').prop('colspan');
2148     } else {
2149         g.actionSpan = 0;
2150     }
2152     // assign table create time
2153     // table_create_time will only available if we are in "Browse" tab
2154     g.tableCreateTime = $(g.o).find('.table_create_time').val();
2156     // assign the hints
2157     g.sortHint = PMA_messages.strSortHint;
2158     g.strMultiSortHint = PMA_messages.strMultiSortHint;
2159     g.markHint = PMA_messages.strColMarkHint;
2160     g.copyHint = PMA_messages.strColNameCopyHint;
2162     // assign common hidden inputs
2163     var $common_hidden_inputs = $(g.o).find('div.common_hidden_inputs');
2164     g.token = $common_hidden_inputs.find('input[name=token]').val();
2165     g.server = $common_hidden_inputs.find('input[name=server]').val();
2166     g.db = $common_hidden_inputs.find('input[name=db]').val();
2167     g.table = $common_hidden_inputs.find('input[name=table]').val();
2169     // add table class
2170     $(t).addClass('pma_table');
2172     // add relative position to global div so that resize handlers are correctly positioned
2173     $(g.gDiv).css('position', 'relative');
2175     // link the global div
2176     $(t).before(g.gDiv);
2177     $(g.gDiv).append(t);
2179     // FEATURES
2180     enableResize    = enableResize === undefined ? true : enableResize;
2181     enableReorder   = enableReorder === undefined ? true : enableReorder;
2182     enableVisib     = enableVisib === undefined ? true : enableVisib;
2183     enableGridEdit  = enableGridEdit === undefined ? true : enableGridEdit;
2184     if (enableResize) {
2185         g.initColResize();
2186     }
2187     if (enableReorder &&
2188         $(g.o).find('table.navigation').length > 0)    // disable reordering for result from EXPLAIN or SHOW syntax, which do not have a table navigation panel
2189     {
2190         g.initColReorder();
2191     }
2192     if (enableVisib) {
2193         g.initColVisib();
2194     }
2195     if (enableGridEdit &&
2196         $(t).is('.ajax'))   // make sure we have the ajax class
2197     {
2198         g.initGridEdit();
2199     }
2201     // create tooltip for each <th> with draggable class
2202     PMA_tooltip(
2203             $(t).find("th.draggable"),
2204             'th',
2205             g.updateHint()
2206     );
2208     // register events for hint tooltip (anchors inside draggable th)
2209     $(t).find('th.draggable a')
2210         .mouseenter(function (e) {
2211             g.showSortHint = true;
2212             g.showMultiSortHint = true;
2213             $(t).find("th.draggable").tooltip("option", {
2214                 content: g.updateHint()
2215             });
2216         })
2217         .mouseleave(function (e) {
2218             g.showSortHint = false;
2219             g.showMultiSortHint = false;
2220             $(t).find("th.draggable").tooltip("option", {
2221                 content: g.updateHint()
2222             });
2223         });
2225     // register events for dragging-related feature
2226     if (enableResize || enableReorder) {
2227         $(document).mousemove(function (e) {
2228             g.dragMove(e);
2229         });
2230         $(document).mouseup(function (e) {
2231             $(g.o).removeClass("turnOffSelect");
2232             g.dragEnd(e);
2233         });
2234     }
2236     // some adjustment
2237     $(t).removeClass('data');
2238     $(g.gDiv).addClass('data');