Hi,
consider following example code:
I had the problem that my application doesn't show anything in Firefox 3. IE and Firefox 2 worked well.
Finally I figured out that the ID "content" collides with something in Firefox 3.
Firebug throws following error:
So changing the ID just to e.g. "appContent" solved te problem.
I hope I could help you with this information.
consider following example code:
Code:
isc.HLayout.create({ ID: "content", height:400, width:"100%", border: "1px solid grey", showShadow: true, shadowDepth:10, animateTime: 2000, members: [ isc.VLayout.create({ ID: "subnavContainer", width:200, height:"100%", backgroundRepeat: "no-repeat", appImgDir:"../images/", backgroundImage:"subnav.jpg" members:[] }), isc.VLayout.create({ ID: "cont2", width:"100%", height:"100%", backgroundRepeat: "no-repeat", appImgDir:"../images/", backgroundImage:"mycontent.jpg", members:[] }) ] }); .....
Finally I figured out that the ID "content" collides with something in Firefox 3.
Firebug throws following error:
Code:
setting a property that has only a getter addGlobalID()([HLayout ID:content] ns=Object ID=content height=400 width=100%, undefined, undefined)ISC_Core.js (Linie 176) draw()(Object ID=content height=400 width=100%, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined)ISC_Core.js (Linie 1713) completeCreation()(Object ID=content height=400 width=100%, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined)ISC_Core.js (Linie 305) createRaw()(Object ID=content height=400 width=100%, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined)ISC_Core.js (Linie 197) application.js()()application.js (Linie 90) [Break on this error] _4[_1.ID]=_1;if(isc.globalsSnapshot)isc.globalsSnapshot.add(_1.ID)}
I hope I could help you with this information.
Comment