Project

General

Profile

Actions

Bug #15826

closed

BE pagetree - selected site is not marked anymore

Added by Wolfgang Paar about 18 years ago. Updated over 13 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
Backend User Interface
Target version:
-
Start date:
2006-03-14
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

After selecting a site in the pagetree, the active page is not marked (like in 3.8). This makes it difficult to see wich site I'm working on.

This is true for all betas and the RC1 of the new skin.

(issue imported from #M2869)


Files

pagetree.gif (7.15 KB) pagetree.gif Administrator Admin, 2006-03-14 17:44
Actions #1

Updated by Wolfgang Paar about 18 years ago

I learned that this is an IE issue (It's working as indented f.e. with Firefox)

Actions #2

Updated by Clemens Riccabona almost 18 years ago

I experienced this problem as well.
I wasn't able to find out the exact problem yet.

Actions #3

Updated by Armin Guenther almost 18 years ago

typo3 (ver.4) uses the following javascript statement to set the class attribute of the acitve page:

theObj.setAttribute("class", "navFrameHL");

This does not work for IE. You have to use

theObj.setAttribute("className", "navFrameHL");

For a rough and dirty solution you may change in typo3/alt_db_navframe.php (and in
typo3/alt_file_navframe.php) the function hilight_row():

Replace

if (theObj)    {
theObj.setAttribute("class", "");
}

by

if (theObj)    {
theObj.setAttribute("class", "");
theObj.setAttribute("className", "");
}

and replace

if (theObj)    {
theObj.setAttribute("class", "navFrameHL");
}

by

if (theObj)    {
theObj.setAttribute("class", "navFrameHL");
theObj.setAttribute("className", "navFrameHL");
}

Just a workaround no good programming style.

Greetings,
Armin

Actions #4

Updated by Benni Mack about 16 years ago

Could not reproduce and should be fixed with 4.1 and all of the above, ok?

Actions

Also available in: Atom PDF