| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/msc/phpmyadmin_old/js/ |
Upload File : |
/* vim: set expandtab sw=4 ts=4 sts=4: */
// gloabl vars to hold Arrow Down event timeStamps
var prevTimeStamp = 0;
var curTimeStamp = 0;
/**
* Allows moving around inputs/select by Ctrl+arrows
*
* @param object event data
*/
function onKeyDownArrowsHandler(e)
{
e = e || window.event;
curTimeStamp = e.timeStamp;
if( prevTimeStamp == 0 ) {
prevTimeStamp = curTimeStamp;
}
else if( Math.abs(curTimeStamp-prevTimeStamp) < 150 ) {
// event in a very quick succession
return;
}
prevTimeStamp = curTimeStamp;
var o = (e.srcElement || e.target);
if (!o) {
return;
}
if (o.tagName != "TEXTAREA" && o.tagName != "INPUT" && o.tagName != "SELECT") {
return;
}
if (navigator.userAgent.toLowerCase().indexOf('applewebkit/') != -1) {
if (e.ctrlKey || e.shiftKey || !e.altKey) {
return;
}
} else {
if (!e.ctrlKey || e.shiftKey || e.altKey) {
return;
}
}
if (!o.id) {
return;
}
var pos = o.id.split("_");
if (pos[0] != "field" || typeof pos[2] == "undefined") {
return;
}
var x = pos[2], y = pos[1];
var nO = null;
switch (e.keyCode) {
case 38:
// up
y--;
break;
case 40:
// down
y++;
break;
case 37:
// left
x--;
break;
case 39:
// right
x++;
break;
default:
return;
}
var is_firefox = navigator.userAgent.toLowerCase().indexOf("firefox/") > -1;
// restore selected index, bug #3799
if (is_firefox && e.type == "keyup") {
o.selectedIndex = window["selectedIndex_" + o.id];
}
var id = "field_" + y + "_" + x;
nO = document.getElementById(id);
if (! nO) {
id = "field_" + y + "_" + x + "_0";
nO = document.getElementById(id);
}
// skip non existent fields
if (! nO) {
return;
}
if (e.type == "keydown") {
nO.focus();
if (is_firefox) {
window["selectedIndex_" + nO.id] = nO.selectedIndex;
}
}
if (nO.tagName != 'SELECT') {
nO.select();
}
e.returnValue = false;
}
AJAX.registerTeardown('keyhandler.js', function () {
$('#table_columns').die('keydown keyup');
$('table.insertRowTable').die('keydown keyup');
});
AJAX.registerOnload('keyhandler.js', function () {
$('#table_columns').live('keydown keyup', function (event) {
onKeyDownArrowsHandler(event.originalEvent);
});
$('table.insertRowTable').live('keydown keyup', function (event) {
onKeyDownArrowsHandler(event.originalEvent);
});
});