RFE #867284 - Click on result row to mark the checkbox.

This commit is contained in:
Garvin Hicking
2004-04-27 11:32:54 +00:00
parent 534cb1f08a
commit ea13babc3a
2 changed files with 4 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ $Source$
calendar. calendar.
2004-04-27 Garvin Hicking <pma@supergarv.de> 2004-04-27 Garvin Hicking <pma@supergarv.de>
* libraries/display_tbl.lib.php: RFE #867284 - Click on result row
to mark the checkbox.
* tbl_select.php: RFE #940194 - Add REGEXP to table search options * tbl_select.php: RFE #940194 - Add REGEXP to table search options
* read_dump.php: Bug #925913 - Uploading with UploadDir/open_basedir * read_dump.php: Bug #925913 - Uploading with UploadDir/open_basedir
fails. fails.

View File

@@ -1165,6 +1165,8 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql)
$column_style = ''; $column_style = '';
} }
$column_style .= ' onmousedown="document.getElementById(\'id_rows_to_delete' . $row_no . '\').checked = (document.getElementById(\'id_rows_to_delete' . $row_no . '\').checked ? false : true);" ';
// garvin: Wrap MIME-transformations. [MIME] // garvin: Wrap MIME-transformations. [MIME]
$default_function = 'default_function'; // default_function $default_function = 'default_function'; // default_function
$transform_function = $default_function; $transform_function = $default_function;