Closed
Bug 610621
Opened 15 years ago
Closed 15 years ago
Product dashboard not visible with IE8
Categories
(Testopia :: User Interface, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: giovacchini.andrea, Assigned: gregaryh)
Details
Attachments
(1 file)
|
77.74 KB,
image/jpeg
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 ( .NET CLR 3.5.30729; .NET4.0E)
Build Identifier:
THe product dashboard was visible with Bugzilla 3.4.* and Testopia 2.3.*, last day I've upgraded to Bugzilla 3.6.3 and Testopia 2.4 and now I can't see the dashboard when using IE, but works fine with Firefox or Chrome.
Web page error details given from IE:
Agente utente: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM; .NET4.0C; .NET4.0E; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)
Timestamp: Tue, 9 Nov 2010 10:36:21 UTC
Messaggio: Proprietà o metodo non supportati dall'oggetto
Linea: 7
Carattere: 1806
Codice: 0
URI: http://94.88.171.150/bugzilla/extensions/Testopia/extjs/adapter/ext/ext-base.js
Messaggio: Previsto oggetto
Linea: 1
Carattere: 27324
Codice: 0
URI: http://94.88.171.150/bugzilla/extensions/Testopia/testopia.all.ycomp.js
Reproducible: Always
Steps to Reproduce:
1. Login
2. Click "product Dashboard"
Actual Results:
Product dashboard does not show
Expected Results:
Product dashboard should appear
| Reporter | ||
Comment 1•15 years ago
|
||
Screenshot of the page
| Assignee | ||
Comment 2•15 years ago
|
||
Try turning the testopia-debug parameter to on or developer. That seems to clear it up for me. I am not sure what is causing this.
| Assignee | ||
Updated•15 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
IE8 doesn't seem to like hasOwnProperty("toString").
Changing
if(Ext.isIE&&D.hasOwnProperty("toString"))
to
if(Ext.isIE && (D.toString !== Object.prototype.toString || D.hasOwnProperty('toString')))
in file extensions/Testopia/extjs/adapter/ext-base.js does the trick
| Reporter | ||
Comment 4•15 years ago
|
||
(In reply to comment #3)
> IE8 doesn't seem to like hasOwnProperty("toString").
>
> Changing
>
> if(Ext.isIE&&D.hasOwnProperty("toString"))
>
> to
>
> if(Ext.isIE && (D.toString !== Object.prototype.toString ||
> D.hasOwnProperty('toString')))
>
> in file extensions/Testopia/extjs/adapter/ext-base.js does the trick
Thank you, that has solved the problem!
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•