Send the form by AJAX with Ctrl+Enter

This commit is contained in:
Jakub Vrana 2010-10-17 08:02:12 +02:00
parent ea38096433
commit 1a5bec94d9
2 changed files with 2 additions and 2 deletions

View file

@ -380,7 +380,7 @@ if (!$columns) {
if (!information_schema(DB)) {
?>
<fieldset><legend><?php echo lang('Edit'); ?></legend><div>
<input type="submit" value="<?php echo lang('Save'); ?>" title="<?php echo lang('Double click on a value to modify it.'); ?>" onclick='return !ajaxForm(this.form);'>
<input type="submit" id="save" value="<?php echo lang('Save'); ?>" title="<?php echo lang('Double click on a value to modify it.'); ?>" onclick='return !ajaxForm(this.form);'>
<input type="submit" name="edit" value="<?php echo lang('Edit'); ?>">
<input type="submit" name="clone" value="<?php echo lang('Clone'); ?>">
<input type="submit" name="delete" value="<?php echo lang('Delete'); ?>" onclick="return confirm('<?php echo lang('Are you sure?'); ?> (' + (this.form['all'].checked ? <?php echo $found_rows; ?> : formChecked(this, /check/)) + ')');">

View file

@ -240,7 +240,7 @@ function selectDblClick(td, event, text) {
});
input.rows = rows;
input.onkeydown = function (event) {
return textareaKeydown(input, event || window.event);
return textareaKeydown(input, event || window.event, false, document.getElementById('save'));
};
}
if (document.selection) {