fix column highlighting for cases where big T is not displayed (eg. in information_schema tables)
This commit is contained in:
@@ -1058,8 +1058,11 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
|
|||||||
function PMA_changeClassForColumn($this_th, newclass) {
|
function PMA_changeClassForColumn($this_th, newclass) {
|
||||||
// index 0 is the th containing the big T
|
// index 0 is the th containing the big T
|
||||||
var th_index = $this_th.index();
|
var th_index = $this_th.index();
|
||||||
|
var has_big_t = !$this_th.closest('tr').children(':first').hasClass('column_heading');
|
||||||
// .eq() is zero-based
|
// .eq() is zero-based
|
||||||
|
if (has_big_t) {
|
||||||
th_index--;
|
th_index--;
|
||||||
|
}
|
||||||
var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')');
|
var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')');
|
||||||
if ($this_th.data('has_class_'+newclass)) {
|
if ($this_th.data('has_class_'+newclass)) {
|
||||||
$tds.removeClass(newclass);
|
$tds.removeClass(newclass);
|
||||||
|
Reference in New Issue
Block a user