Hello,
when i will open a test report from a testplan i get this error "object doesn´t support property or method", execTree.js, Code:0, Line 132, Char.5
But, then i cannot open the report, the link to the report is not visible.
With firefox 3.6.13 it is working fine.
Is this a problem from bugzilla ?
best regards
Sven
[SOLVED] 1.9.1 with IE8
Moderators: Amaradana, TurboPT, TL Developers
Re: 1.9.1 with IE8
Hello,
i have found the bug
in the file execTree.js on line 132 you must change "tree = new Tree.TreePanel({" to "var tree = new Tree.TreePanel({"
and it is working fine
best regards
Sven
i have found the bug
in the file execTree.js on line 132 you must change "tree = new Tree.TreePanel({" to "var tree = new Tree.TreePanel({"
and it is working fine
best regards
Sven
Re: [SOLVED] 1.9.1 with IE8
Hi,
a few weeks ago i had the same mistake.
My first solution looked exactly like yours. But then i found a few unwanted side effects. This code is called from several locations and sometimes "tree" is defined and sometimes not. And redefine tree is not very good.
My current solution: Add this before line 132:
Seems to work with Firefox, IE8 and Chrome.
a few weeks ago i had the same mistake.
My first solution looked exactly like yours. But then i found a few unwanted side effects. This code is called from several locations and sometimes "tree" is defined and sometimes not. And redefine tree is not very good.
My current solution: Add this before line 132:
Code: Select all
if (typeof tree === "undefined")
{
var tree;
}
Re: [SOLVED] 1.9.1 with IE8
this is problem of using forum this fix will be never incorporated to code -> report on mantis for issues ALWAYS
Re: [SOLVED] 1.9.1 with IE8
Thanks,
is working fine.
Sven
is working fine.
Sven
-
- TestLink user
- Posts: 2
- Joined: Sun Jun 28, 2009 1:40 pm
Re: [SOLVED] 1.9.1 with IE8
this fix should be also in:
execTreeWithMenu.js after line 131
tcTree.js after line 166
treebyloader.js after line 346
execTreeWithMenu.js after line 131
tcTree.js after line 166
treebyloader.js after line 346