1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Ctrl+Up and Down in edit and in-place edit

This commit is contained in:
Jakub Vrana
2011-01-25 17:13:57 +01:00
parent 0926122e14
commit 241fc4ef6c
5 changed files with 34 additions and 30 deletions

View File

@@ -67,7 +67,7 @@ if ($_POST["save"]) {
<form action="" method="post" enctype="multipart/form-data">
<?php
if ($fields) {
echo "<table cellspacing='0'>\n";
echo "<table cellspacing='0' onkeydown='return editingKeydown(event);'>\n";
foreach ($fields as $name => $field) {
echo "<tr><th>" . $adminer->fieldName($field);
$default = $_GET["set"][bracket_escape($name)];