From ea13babc3a0219236b75b9d6945f2dce6e6523ed Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Tue, 27 Apr 2004 11:32:54 +0000 Subject: [PATCH] RFE #867284 - Click on result row to mark the checkbox. --- ChangeLog | 2 ++ libraries/display_tbl.lib.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 89363ba01..695df2531 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,8 @@ $Source$ calendar. 2004-04-27 Garvin Hicking + * 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 * read_dump.php: Bug #925913 - Uploading with UploadDir/open_basedir fails. diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 44cf285c6..cd7e2ad22 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1165,6 +1165,8 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) $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] $default_function = 'default_function'; // default_function $transform_function = $default_function;