rfe #3111455 [interface] Column highlighting and marking in table view

This commit is contained in:
Marc Delisle
2010-11-18 17:11:04 -05:00
parent 4659be88eb
commit b2d7a78012
3 changed files with 36 additions and 1 deletions

View File

@@ -864,9 +864,13 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal'
|| $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') {
echo '<th';
$th_class = array();
if ($condition_field) {
echo ' class="condition"';
$th_class[] = 'condition';
}
$th_class[] = 'column_heading';
echo ' class="' . implode(' ', $th_class) . '"';
if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') {
echo ' valign="bottom"';
}