From: <no...@so...> - 2001-01-25 15:56:33
|
Bug #130055, was updated on 2001-Jan-25 07:56 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Browser-Specific Issue Status: Open Resolution: None Bug Group: None Priority: 5 Submitted by: mhavi Assigned to : nobody Summary: loadpanel in frameset with NS4... Details: While I'm not sure that this is related to loadpanel, I had to change to code to get it to work when creating a loadpanel in a 'frameset' doc. Here's the diff: 158c159,167 < while(lyr.parentLayer!=window) lyr=lyr.parentLayer; --- > //while(lyr.parentLayer!=window) { > while(lyr.parentLayer && lyr.parentLayer!=lyr.name) lyr=lyr.parentLayer; > /* 184c193,194 < while(lyr.parentLayer != window) lyr = lyr.parentLayer; --- > //while(lyr.parentLayer != window) lyr = lyr.parentLayer; > while(lyr.parentLayer && lyr.parentLayer!=lyr.name) lyr=lyr.parentLayer; I tested the above change with the doc in the example directory and it worked fine...under Linux that is. -Mark For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=130055&group_id=5757 |