|
Riccardo Fanetti, sviluppo software
|
|
|
Chiedi pure.
|
|
 | Invalid value |
|
|
|
|
|
 | Invalid value |
|
|
|
 | Invalid value |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Focus Row (Javascript) [Java Script ]
function focusRow(up, down, sx, dx)
{
if (event.keyCode == 38) // up
{
document.getElementById(up).focus();
}
else if (event.keyCode == 40) // down
{
document.getElementById(down).focus();
}
// else if (event.keyCode == 37) // sx
// {
// document.getElementById(sx).focus();
// }
// else if (event.keyCode == 39) // dx
// {
// document.getElementById(dx).focus();
// }
}
|