You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(75) |
Nov
(252) |
Dec
(418) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(659) |
Feb
(1039) |
Mar
(870) |
Apr
(235) |
May
(329) |
Jun
(251) |
Jul
(123) |
Aug
(119) |
Sep
(67) |
Oct
(194) |
Nov
(535) |
Dec
(133) |
2002 |
Jan
(122) |
Feb
(24) |
Mar
(29) |
Apr
(28) |
May
(16) |
Jun
(20) |
Jul
(11) |
Aug
(12) |
Sep
(13) |
Oct
(14) |
Nov
(23) |
Dec
(19) |
2003 |
Jan
(28) |
Feb
(170) |
Mar
(288) |
Apr
(211) |
May
(126) |
Jun
(166) |
Jul
(131) |
Aug
(102) |
Sep
(211) |
Oct
(301) |
Nov
(22) |
Dec
(6) |
2004 |
Jan
(14) |
Feb
(16) |
Mar
(7) |
Apr
|
May
(8) |
Jun
(25) |
Jul
(21) |
Aug
(2) |
Sep
(7) |
Oct
|
Nov
(2) |
Dec
(1) |
2005 |
Jan
(4) |
Feb
(2) |
Mar
(14) |
Apr
(24) |
May
(3) |
Jun
(7) |
Jul
(30) |
Aug
(5) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: francesco A. <fa...@we...> - 2001-01-19 08:31:04
|
Hi, please i need of an example for see how to use the loadpanel thanks Francesco |
From: martin s. <ma...@ab...> - 2001-01-18 21:07:25
|
well, i didn't really mean this to be an advanced debugging-utility, but while i have used it on my=20 own for a pretty long time and found it very useful=20 I just thought it could be helpful for you others aswell... maybe we should merge debug.js and console.js into a single debugutils.js file with all debug-utilities? (until we have a real debugger something like described below) /martin ----- Original Message -----=20 From: "Pascal Bestebroer" <pa...@dy...> To: <dyn...@li...> Sent: Thursday, January 18, 2001 7:10 PM Subject: RE: [Dynapi-Dev] small DynAPI-util: console > honestly, haven't looked at it yet.. but I think an enhanced thing = like this > should be made > so that it can also be used for test-cases. I know there was a = debug.js file > once (a long time ago) > but I think something that works more like the netscape js console, = with > maybe hyperlinks to show > the functions, which popped the error, code or something would be a = great > thing to have. >=20 >=20 > Pascal Bestebroer > pa...@dy... > http://www.dynamic-core.net >=20 > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Jordi = 'IlMaestro' > > Ministral > > Verzonden: donderdag 18 januari 2001 17:59 > > Aan: dyn...@li... > > Onderwerp: Re: [Dynapi-Dev] small DynAPI-util: console > > > > > > Absolutely. I propose it is made available via CVS. > > > > Robert Rainwater wrote: > > > > > Nice. It would be even better if it had a dumpProperties > > method, that could > > > dump all of the properties of an object. > > > > > > Like: > > > DynAPI.console.dumpProperties(myLayer); > > > > > > -- > > > // Robert Rainwater > > > > > > On 1/18/2001, 11:37:25 AM EST, martin wrote about "[Dynapi-Dev] > > small DynAPI-util: console": > > > > > > > i've been using a js-console for a while and > > > > found it useful so i thought i'll ported it to DynAPI > > > > and share it with you. > > > > > > > with the console you get a small popup-window > > > > to which you are able to write variables, messages > > > > and so on. very usefull instead of those alert's > > > > > > > put the console.js in dynapi/util/ > > > > > > > methods: > > > > > > > DynAPI.console.open() > > > > opens the console-window > > > > > > > DynAPI.console.write(msg) > > > > writes msg to the console > > > > if the console isn't opened, this will be done for you. > > > > internet explorer will also scroll to the bottom of the console > > > > where the newest messages are, couldn't found out how > > > > you do this in netscape > > > > > > > DynAPI.console.close() > > > > closes the console-window > > > > > > > DynAPI.console.enable() > > > > enables the console > > > > > > > DynAPI.console.disable() > > > > disables the console (the console wont open or be written to) > > > > > > > DynAPI.console.clear() > > > > clears the console window > > > > > > > example: > > > > > > > DynAPI.setLibraryPath('dynapi/src/lib') > > > > DynAPI.include('dynapi.api.*') > > > > DynAPI.include('dynapi.util.console') > > > > > > > DynAPI.onLoad=3Dfunction() { > > > > layer =3D new DynLayer(null,40,10,25,50,'red'); > > > > DynAPI.document.addChild(layer); > > > > > > > DynAPI.console.write(layer.toString()); > > > > DynAPI.console.write('position: '+layer.x+'x'+layer.y); > > > > DynAPI.console.write('size: '+layer.w+'x'+layer.h); > > > > }; > > > > > > > (leave the console open when you reload the > > > > page, then the console-window's position and > > > > size will remain) > > > > > > > cheers > > > > /martin > > > > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > >=20 >=20 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: <tr...@us...> - 2001-01-18 21:02:45
|
Have you seen the debug.js file that was in the API about 6-10 months ago? It did everything console does, but with varaible watching, and object comparison. Later versions had object tree walkers as well. > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of > martin ström > Sent: Thursday, January 18, 2001 3:11 PM > To: dyn...@li... > Subject: Re: [Dynapi-Dev] small DynAPI-util: console > > > okey, i've added dumpProperties() it > takes (obj, hidemethods) as arguments > > obj is of course the object you want to dump. > if hidemethods is true then no methods will > be listed. > > All properties/methods/whatever will be listed > in alphabetic order just to make it easier find > a specific value. > > (if this will be available via CVS, can somebody > else post it? currently i only got CVS-read-access > working..) > > /martin > > ----- Original Message ----- > From: "Robert Rainwater" <rra...@ya...> > To: "DynAPI Development List" <dyn...@li...> > Sent: Thursday, January 18, 2001 5:54 PM > Subject: Re: [Dynapi-Dev] small DynAPI-util: console > > > > > > Nice. It would be even better if it had a dumpProperties > method, that could > > dump all of the properties of an object. > > > > Like: > > DynAPI.console.dumpProperties(myLayer); > > > > -- > > // Robert Rainwater > > > > On 1/18/2001, 11:37:25 AM EST, martin wrote about > "[Dynapi-Dev] small DynAPI-util: console": > > > > > i've been using a js-console for a while and > > > found it useful so i thought i'll ported it to DynAPI > > > and share it with you. > > > > > with the console you get a small popup-window > > > to which you are able to write variables, messages > > > and so on. very usefull instead of those alert's > > > > > put the console.js in dynapi/util/ > > > > > methods: > > > > > DynAPI.console.open() > > > opens the console-window > > > > > DynAPI.console.write(msg) > > > writes msg to the console > > > if the console isn't opened, this will be done for you. > > > internet explorer will also scroll to the bottom of the console > > > where the newest messages are, couldn't found out how > > > you do this in netscape > > > > > DynAPI.console.close() > > > closes the console-window > > > > > DynAPI.console.enable() > > > enables the console > > > > > DynAPI.console.disable() > > > disables the console (the console wont open or be written to) > > > > > DynAPI.console.clear() > > > clears the console window > > > > > > > example: > > > > > DynAPI.setLibraryPath('dynapi/src/lib') > > > DynAPI.include('dynapi.api.*') > > > DynAPI.include('dynapi.util.console') > > > > > DynAPI.onLoad=function() { > > > layer = new DynLayer(null,40,10,25,50,'red'); > > > DynAPI.document.addChild(layer); > > > > > DynAPI.console.write(layer.toString()); > > > DynAPI.console.write('position: '+layer.x+'x'+layer.y); > > > DynAPI.console.write('size: '+layer.w+'x'+layer.h); > > > }; > > > > > (leave the console open when you reload the > > > page, then the console-window's position and > > > size will remain) > > > > > cheers > > > /martin > > > > > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > |
From: Robert R. <rra...@ya...> - 2001-01-18 20:43:59
|
I will add it to CVS shortly. -- // Robert Rainwater On 1/18/2001, 3:11:12 PM EST, martin wrote about "[Dynapi-Dev] small DynAPI-util: console": > okey, i've added dumpProperties() it > takes (obj, hidemethods) as arguments > obj is of course the object you want to dump. > if hidemethods is true then no methods will > be listed. > All properties/methods/whatever will be listed > in alphabetic order just to make it easier find > a specific value. > (if this will be available via CVS, can somebody > else post it? currently i only got CVS-read-access > working..) > /martin > ----- Original Message ----- > From: "Robert Rainwater" <rra...@ya...> > To: "DynAPI Development List" <dyn...@li...> > Sent: Thursday, January 18, 2001 5:54 PM > Subject: Re: [Dynapi-Dev] small DynAPI-util: console >> >> Nice. It would be even better if it had a dumpProperties method, that could >> dump all of the properties of an object. >> >> Like: >> DynAPI.console.dumpProperties(myLayer); >> >> -- >> // Robert Rainwater >> >> On 1/18/2001, 11:37:25 AM EST, martin wrote about "[Dynapi-Dev] small DynAPI-util: console": >> >> > i've been using a js-console for a while and >> > found it useful so i thought i'll ported it to DynAPI >> > and share it with you. >> >> > with the console you get a small popup-window >> > to which you are able to write variables, messages >> > and so on. very usefull instead of those alert's >> >> > put the console.js in dynapi/util/ >> >> > methods: >> >> > DynAPI.console.open() >> > opens the console-window >> >> > DynAPI.console.write(msg) >> > writes msg to the console >> > if the console isn't opened, this will be done for you. >> > internet explorer will also scroll to the bottom of the console >> > where the newest messages are, couldn't found out how >> > you do this in netscape >> >> > DynAPI.console.close() >> > closes the console-window >> >> > DynAPI.console.enable() >> > enables the console >> >> > DynAPI.console.disable() >> > disables the console (the console wont open or be written to) >> >> > DynAPI.console.clear() >> > clears the console window >> >> >> > example: >> >> > DynAPI.setLibraryPath('dynapi/src/lib') >> > DynAPI.include('dynapi.api.*') >> > DynAPI.include('dynapi.util.console') >> >> > DynAPI.onLoad=function() { >> > layer = new DynLayer(null,40,10,25,50,'red'); >> > DynAPI.document.addChild(layer); >> >> > DynAPI.console.write(layer.toString()); >> > DynAPI.console.write('position: '+layer.x+'x'+layer.y); >> > DynAPI.console.write('size: '+layer.w+'x'+layer.h); >> > }; >> >> > (leave the console open when you reload the >> > page, then the console-window's position and >> > size will remain) >> >> > cheers >> > /martin >> >> >> >> _______________________________________________ >> Dynapi-Dev mailing list >> Dyn...@li... >> http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: martin s. <ma...@ab...> - 2001-01-18 20:38:37
|
okey, i've added dumpProperties() it=20 takes (obj, hidemethods) as arguments obj is of course the object you want to dump. if hidemethods is true then no methods will=20 be listed. All properties/methods/whatever will be listed=20 in alphabetic order just to make it easier find=20 a specific value. (if this will be available via CVS, can somebody else post it? currently i only got CVS-read-access working..) /martin ----- Original Message -----=20 From: "Robert Rainwater" <rra...@ya...> To: "DynAPI Development List" <dyn...@li...> Sent: Thursday, January 18, 2001 5:54 PM Subject: Re: [Dynapi-Dev] small DynAPI-util: console >=20 > Nice. It would be even better if it had a dumpProperties method, that = could > dump all of the properties of an object. >=20 > Like: > DynAPI.console.dumpProperties(myLayer); >=20 > --=20 > // Robert Rainwater >=20 > On 1/18/2001, 11:37:25 AM EST, martin wrote about "[Dynapi-Dev] small = DynAPI-util: console": >=20 > > i've been using a js-console for a while and > > found it useful so i thought i'll ported it to DynAPI > > and share it with you. >=20 > > with the console you get a small popup-window > > to which you are able to write variables, messages > > and so on. very usefull instead of those alert's >=20 > > put the console.js in dynapi/util/=20 >=20 > > methods:=20 >=20 > > DynAPI.console.open() > > opens the console-window >=20 > > DynAPI.console.write(msg) > > writes msg to the console > > if the console isn't opened, this will be done for you. > > internet explorer will also scroll to the bottom of the console=20 > > where the newest messages are, couldn't found out how > > you do this in netscape >=20 > > DynAPI.console.close() > > closes the console-window >=20 > > DynAPI.console.enable() > > enables the console >=20 > > DynAPI.console.disable() > > disables the console (the console wont open or be written to) >=20 > > DynAPI.console.clear() > > clears the console window >=20 >=20 > > example: >=20 > > DynAPI.setLibraryPath('dynapi/src/lib') > > DynAPI.include('dynapi.api.*') > > DynAPI.include('dynapi.util.console') >=20 > > DynAPI.onLoad=3Dfunction() { > > layer =3D new DynLayer(null,40,10,25,50,'red'); > > DynAPI.document.addChild(layer); >=20 > > DynAPI.console.write(layer.toString()); > > DynAPI.console.write('position: '+layer.x+'x'+layer.y); > > DynAPI.console.write('size: '+layer.w+'x'+layer.h); > > }; >=20 > > (leave the console open when you reload the > > page, then the console-window's position and > > size will remain) >=20 > > cheers > > /martin >=20 >=20 >=20 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Pascal B. <pa...@dy...> - 2001-01-18 18:12:03
|
honestly, haven't looked at it yet.. but I think an enhanced thing like this should be made so that it can also be used for test-cases. I know there was a debug.js file once (a long time ago) but I think something that works more like the netscape js console, with maybe hyperlinks to show the functions, which popped the error, code or something would be a great thing to have. Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Jordi 'IlMaestro' > Ministral > Verzonden: donderdag 18 januari 2001 17:59 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] small DynAPI-util: console > > > Absolutely. I propose it is made available via CVS. > > Robert Rainwater wrote: > > > Nice. It would be even better if it had a dumpProperties > method, that could > > dump all of the properties of an object. > > > > Like: > > DynAPI.console.dumpProperties(myLayer); > > > > -- > > // Robert Rainwater > > > > On 1/18/2001, 11:37:25 AM EST, martin wrote about "[Dynapi-Dev] > small DynAPI-util: console": > > > > > i've been using a js-console for a while and > > > found it useful so i thought i'll ported it to DynAPI > > > and share it with you. > > > > > with the console you get a small popup-window > > > to which you are able to write variables, messages > > > and so on. very usefull instead of those alert's > > > > > put the console.js in dynapi/util/ > > > > > methods: > > > > > DynAPI.console.open() > > > opens the console-window > > > > > DynAPI.console.write(msg) > > > writes msg to the console > > > if the console isn't opened, this will be done for you. > > > internet explorer will also scroll to the bottom of the console > > > where the newest messages are, couldn't found out how > > > you do this in netscape > > > > > DynAPI.console.close() > > > closes the console-window > > > > > DynAPI.console.enable() > > > enables the console > > > > > DynAPI.console.disable() > > > disables the console (the console wont open or be written to) > > > > > DynAPI.console.clear() > > > clears the console window > > > > > example: > > > > > DynAPI.setLibraryPath('dynapi/src/lib') > > > DynAPI.include('dynapi.api.*') > > > DynAPI.include('dynapi.util.console') > > > > > DynAPI.onLoad=function() { > > > layer = new DynLayer(null,40,10,25,50,'red'); > > > DynAPI.document.addChild(layer); > > > > > DynAPI.console.write(layer.toString()); > > > DynAPI.console.write('position: '+layer.x+'x'+layer.y); > > > DynAPI.console.write('size: '+layer.w+'x'+layer.h); > > > }; > > > > > (leave the console open when you reload the > > > page, then the console-window's position and > > > size will remain) > > > > > cheers > > > /martin > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Jordi 'I. M. <jmi...@or...> - 2001-01-18 17:02:41
|
Absolutely. I propose it is made available via CVS. Robert Rainwater wrote: > Nice. It would be even better if it had a dumpProperties method, that could > dump all of the properties of an object. > > Like: > DynAPI.console.dumpProperties(myLayer); > > -- > // Robert Rainwater > > On 1/18/2001, 11:37:25 AM EST, martin wrote about "[Dynapi-Dev] small DynAPI-util: console": > > > i've been using a js-console for a while and > > found it useful so i thought i'll ported it to DynAPI > > and share it with you. > > > with the console you get a small popup-window > > to which you are able to write variables, messages > > and so on. very usefull instead of those alert's > > > put the console.js in dynapi/util/ > > > methods: > > > DynAPI.console.open() > > opens the console-window > > > DynAPI.console.write(msg) > > writes msg to the console > > if the console isn't opened, this will be done for you. > > internet explorer will also scroll to the bottom of the console > > where the newest messages are, couldn't found out how > > you do this in netscape > > > DynAPI.console.close() > > closes the console-window > > > DynAPI.console.enable() > > enables the console > > > DynAPI.console.disable() > > disables the console (the console wont open or be written to) > > > DynAPI.console.clear() > > clears the console window > > > example: > > > DynAPI.setLibraryPath('dynapi/src/lib') > > DynAPI.include('dynapi.api.*') > > DynAPI.include('dynapi.util.console') > > > DynAPI.onLoad=function() { > > layer = new DynLayer(null,40,10,25,50,'red'); > > DynAPI.document.addChild(layer); > > > DynAPI.console.write(layer.toString()); > > DynAPI.console.write('position: '+layer.x+'x'+layer.y); > > DynAPI.console.write('size: '+layer.w+'x'+layer.h); > > }; > > > (leave the console open when you reload the > > page, then the console-window's position and > > size will remain) > > > cheers > > /martin > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Robert R. <rra...@ya...> - 2001-01-18 16:54:41
|
Nice. It would be even better if it had a dumpProperties method, that could dump all of the properties of an object. Like: DynAPI.console.dumpProperties(myLayer); -- // Robert Rainwater On 1/18/2001, 11:37:25 AM EST, martin wrote about "[Dynapi-Dev] small DynAPI-util: console": > i've been using a js-console for a while and > found it useful so i thought i'll ported it to DynAPI > and share it with you. > with the console you get a small popup-window > to which you are able to write variables, messages > and so on. very usefull instead of those alert's > put the console.js in dynapi/util/ > methods: > DynAPI.console.open() > opens the console-window > DynAPI.console.write(msg) > writes msg to the console > if the console isn't opened, this will be done for you. > internet explorer will also scroll to the bottom of the console > where the newest messages are, couldn't found out how > you do this in netscape > DynAPI.console.close() > closes the console-window > DynAPI.console.enable() > enables the console > DynAPI.console.disable() > disables the console (the console wont open or be written to) > DynAPI.console.clear() > clears the console window > example: > DynAPI.setLibraryPath('dynapi/src/lib') > DynAPI.include('dynapi.api.*') > DynAPI.include('dynapi.util.console') > DynAPI.onLoad=function() { > layer = new DynLayer(null,40,10,25,50,'red'); > DynAPI.document.addChild(layer); > DynAPI.console.write(layer.toString()); > DynAPI.console.write('position: '+layer.x+'x'+layer.y); > DynAPI.console.write('size: '+layer.w+'x'+layer.h); > }; > (leave the console open when you reload the > page, then the console-window's position and > size will remain) > cheers > /martin |
From: martin s. <ma...@ab...> - 2001-01-18 16:34:42
|
i've been using a js-console for a while and found it useful so i thought i'll ported it to DynAPI and share it with you. with the console you get a small popup-window to which you are able to write variables, messages and so on. very usefull instead of those alert's put the console.js in dynapi/util/=20 methods:=20 DynAPI.console.open() opens the console-window DynAPI.console.write(msg) writes msg to the console if the console isn't opened, this will be done for you. internet explorer will also scroll to the bottom of the console=20 where the newest messages are, couldn't found out how you do this in netscape DynAPI.console.close() closes the console-window DynAPI.console.enable() enables the console DynAPI.console.disable() disables the console (the console wont open or be written to) DynAPI.console.clear() clears the console window example: DynAPI.setLibraryPath('dynapi/src/lib') DynAPI.include('dynapi.api.*') DynAPI.include('dynapi.util.console') DynAPI.onLoad=3Dfunction() { layer =3D new DynLayer(null,40,10,25,50,'red'); DynAPI.document.addChild(layer); DynAPI.console.write(layer.toString()); DynAPI.console.write('position: '+layer.x+'x'+layer.y); DynAPI.console.write('size: '+layer.w+'x'+layer.h); }; (leave the console open when you reload the page, then the console-window's position and size will remain) cheers /martin |
From: <no...@so...> - 2001-01-18 13:19:57
|
Bug #126673, was updated on 2000-Dec-22 03:23 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: nobody Assigned to : nobody Summary: IE 4 & 5 Macintosh Details: DynLayer doesn't work properly Follow-Ups: Date: 2001-Jan-18 05:20 By: nobody Comment: There are quite a few problems with DHTML related to the Macintosh: IE4.5 is a nightmare, especially when coming to z-indexes and weird transparent overlays preventing events from occuring on the page) It also seems like any clipping manipulation is disallowed (the elm.style.clip does not seem to be able to be manipulated) This seems to also carry on over to IE5 on the mac too Many of the most advanced features (luckily most not used by the DynAPI) are not supported at all in 4.5 and quite a few are incompletely supported by 5. Unfortunately I don't have a mac myself at present so i cannot give further information, however it is worth noting that IE5.5 PC and IE5 mac are very similar (bugs like transparent layers not capturing events etc are held in common) As I am no longer familiar with the DynAPI I'm afraid that this is all I can offer at present, I may try to list all problems I encounter as I am currently developing a very complex DHTML API of my own for a project I am on which requires support for: NS 4.08 upto NS6 PC and Mac IE 4-5.5 PC and Mac Which means I spend most of my time cursing macintoshes! Chris Bodar(t) ------------------------------------------------------- Date: 2001-Jan-15 09:44 By: dcpascal Comment: Someone with Mac IE access that can fix this? or: Any other Mac IE users who have the same problems (or no problems at all) ------------------------------------------------------- Date: 2001-Jan-15 09:12 By: ckepper Comment: As far as I can see there must be something wrong with the initialization routine of the Dynlayer. I don't get any Javascript Error Messages and the Dynlayers don't show up anywhere. However, everything worked fine in all other browsers. ------------------------------------------------------- Date: 2001-Jan-12 11:18 By: dcpascal Comment: Give more info, cause this is not helpfull. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=126673&group_id=5757 |
From: Jordi 'I. M. <jmi...@or...> - 2001-01-18 12:58:03
|
While I was in the middle of my personal war with events my mail server stoped working. Since thursday night I have not received any mail, and I won't receive all the missed ones now. I don't know what's been happening here but anyway: I've kept on debugging events and layer creation. I just updated CVS with the latest files, which fix several bugs I found. I also added a new example file, dynapi.api.bubbling.html, which allows to test event bubbling. Please bear with me If I broke something. The tests I've carried so far look Ok. I'm developing a huge business web using DynAPI ( we're talking about 500+ deep-nested layers ) and trying to optimize as much as I can, then I'm finding all existing bugs. Cya |
From: Pascal <pb...@oi...> - 2001-01-18 12:49:15
|
onUnload is the last one (basically all window events) Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens > GORTSILAS ANDREAS > Verzonden: donderdag 18 januari 2001 13:38 > Aan: 'dyn...@li...' > Onderwerp: RE: [Dynapi-Dev] Document resize event > > > Thanks for your quick reply... > > What other events, except onresize, follow this convention: > DynAPI.eventname = .... > > Andreas > > -----Original Message----- > From: Pascal [mailto:pb...@oi...] > Sent: Thursday, January 18, 2001 2:29 PM > To: dyn...@li... > Subject: RE: [Dynapi-Dev] Document resize event > > > 1. Sorry for previous reply (empty one :) > 2. Please use DynAPI-help for .. uhm .. help > > 3.: you should catch the onresize event like this: > > DynAPI.onResize=function() { > > } > > it's the window's onresize event.. > but actually it's a good idea to also invoke those events on every > document.. :-) > > I'll look into the onmouseup problem.. but seeing as Jordi is > doing (has > done) a lot > of event code updating it will most likely be fixed. > > Pascal Bestebroer (pb...@oi...) > Software ontwikkelaar > Oberon Informatiesystemen b.v. > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens > > GORTSILAS ANDREAS > > Verzonden: donderdag 18 januari 2001 13:18 > > Aan: 'dyn...@li...' > > Onderwerp: [Dynapi-Dev] Document resize event > > > > > > Hello, > > > > I am new to DynAPI ... > > > > I decided to try the dynacode dynapi distribution... the > > sources I use are > > 2001-01-13... > > > > I am trying to catch the onresize event of the browser window > > in order to > > keep a layer centered in the window frame... > > > > A sample code I use is: > > > > DynAPI.onLoad=function() { > > myListener = new EventListener() > > myListener.onmouseup=function(e) { > > alert('Document Clicked') > > } > > myListener.onmousemove=function(e) { > > status="x="+e.x+" y="+e.y; > > } > > myListener.onresize=function(e) { > > status="onresize"; > > } > > > > DynAPI.document.addEventListener(myListener) > > } > > > > When i try the above code the only event which works is the > > onmousemove... > > > > Can any one help me? Why is this happening? > > > > Thank you > > > > Andreas Gortsilas > > ********************************* > > * Andreas Gortsilas > > * Systems Engineer - R&D > > * Quality Manager - R&D > > * Singular Computer Applications > > * Tel.: (301) 64 79 600 (688) > > * SMTP: ag...@si... > > * HTTP://www.singular.gr > > ********************************* > > > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: GORTSILAS A. <ag...@si...> - 2001-01-18 12:38:41
|
Thanks for your quick reply... What other events, except onresize, follow this convention: DynAPI.eventname = .... Andreas -----Original Message----- From: Pascal [mailto:pb...@oi...] Sent: Thursday, January 18, 2001 2:29 PM To: dyn...@li... Subject: RE: [Dynapi-Dev] Document resize event 1. Sorry for previous reply (empty one :) 2. Please use DynAPI-help for .. uhm .. help 3.: you should catch the onresize event like this: DynAPI.onResize=function() { } it's the window's onresize event.. but actually it's a good idea to also invoke those events on every document.. :-) I'll look into the onmouseup problem.. but seeing as Jordi is doing (has done) a lot of event code updating it will most likely be fixed. Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens > GORTSILAS ANDREAS > Verzonden: donderdag 18 januari 2001 13:18 > Aan: 'dyn...@li...' > Onderwerp: [Dynapi-Dev] Document resize event > > > Hello, > > I am new to DynAPI ... > > I decided to try the dynacode dynapi distribution... the > sources I use are > 2001-01-13... > > I am trying to catch the onresize event of the browser window > in order to > keep a layer centered in the window frame... > > A sample code I use is: > > DynAPI.onLoad=function() { > myListener = new EventListener() > myListener.onmouseup=function(e) { > alert('Document Clicked') > } > myListener.onmousemove=function(e) { > status="x="+e.x+" y="+e.y; > } > myListener.onresize=function(e) { > status="onresize"; > } > > DynAPI.document.addEventListener(myListener) > } > > When i try the above code the only event which works is the > onmousemove... > > Can any one help me? Why is this happening? > > Thank you > > Andreas Gortsilas > ********************************* > * Andreas Gortsilas > * Systems Engineer - R&D > * Quality Manager - R&D > * Singular Computer Applications > * Tel.: (301) 64 79 600 (688) > * SMTP: ag...@si... > * HTTP://www.singular.gr > ********************************* > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Oscar C. <os...@wh...> - 2001-01-18 12:32:53
|
try DynAPI.onLoad=function() { myListener = new EventListener() myListener.onmouseup=function(e) { alert('Document Clicked') } myListener.onmousemove=function(e) { status="x="+e.x+" y="+e.y; } DynAPI.document.addEventListener(myListener) } DynAPI.onResize=function(){ status="onresize"; } ----- Original Message ----- From: "GORTSILAS ANDREAS" <ag...@si...> To: <dyn...@li...> Sent: Thursday, January 18, 2001 1:18 PM Subject: [Dynapi-Dev] Document resize event > Hello, > > I am new to DynAPI ... > > I decided to try the dynacode dynapi distribution... the sources I use are > 2001-01-13... > > I am trying to catch the onresize event of the browser window in order to > keep a layer centered in the window frame... > > A sample code I use is: > > DynAPI.onLoad=function() { > myListener = new EventListener() > myListener.onmouseup=function(e) { > alert('Document Clicked') > } > myListener.onmousemove=function(e) { > status="x="+e.x+" y="+e.y; > } > myListener.onresize=function(e) { > status="onresize"; > } > > DynAPI.document.addEventListener(myListener) > } > > When i try the above code the only event which works is the onmousemove... > > Can any one help me? Why is this happening? > > Thank you > > Andreas Gortsilas > ********************************* > * Andreas Gortsilas > * Systems Engineer - R&D > * Quality Manager - R&D > * Singular Computer Applications > * Tel.: (301) 64 79 600 (688) > * SMTP: ag...@si... > * HTTP://www.singular.gr > ********************************* > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > |
From: Pascal <pb...@oi...> - 2001-01-18 12:29:31
|
1. Sorry for previous reply (empty one :) 2. Please use DynAPI-help for .. uhm .. help 3.: you should catch the onresize event like this: DynAPI.onResize=function() { } it's the window's onresize event.. but actually it's a good idea to also invoke those events on every document.. :-) I'll look into the onmouseup problem.. but seeing as Jordi is doing (has done) a lot of event code updating it will most likely be fixed. Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens > GORTSILAS ANDREAS > Verzonden: donderdag 18 januari 2001 13:18 > Aan: 'dyn...@li...' > Onderwerp: [Dynapi-Dev] Document resize event > > > Hello, > > I am new to DynAPI ... > > I decided to try the dynacode dynapi distribution... the > sources I use are > 2001-01-13... > > I am trying to catch the onresize event of the browser window > in order to > keep a layer centered in the window frame... > > A sample code I use is: > > DynAPI.onLoad=function() { > myListener = new EventListener() > myListener.onmouseup=function(e) { > alert('Document Clicked') > } > myListener.onmousemove=function(e) { > status="x="+e.x+" y="+e.y; > } > myListener.onresize=function(e) { > status="onresize"; > } > > DynAPI.document.addEventListener(myListener) > } > > When i try the above code the only event which works is the > onmousemove... > > Can any one help me? Why is this happening? > > Thank you > > Andreas Gortsilas > ********************************* > * Andreas Gortsilas > * Systems Engineer - R&D > * Quality Manager - R&D > * Singular Computer Applications > * Tel.: (301) 64 79 600 (688) > * SMTP: ag...@si... > * HTTP://www.singular.gr > ********************************* > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Pascal <pb...@oi...> - 2001-01-18 12:27:37
|
Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens > GORTSILAS ANDREAS > Verzonden: donderdag 18 januari 2001 13:18 > Aan: 'dyn...@li...' > Onderwerp: [Dynapi-Dev] Document resize event > > > Hello, > > I am new to DynAPI ... > > I decided to try the dynacode dynapi distribution... the > sources I use are > 2001-01-13... > > I am trying to catch the onresize event of the browser window > in order to > keep a layer centered in the window frame... > > A sample code I use is: > > DynAPI.onLoad=function() { > myListener = new EventListener() > myListener.onmouseup=function(e) { > alert('Document Clicked') > } > myListener.onmousemove=function(e) { > status="x="+e.x+" y="+e.y; > } > myListener.onresize=function(e) { > status="onresize"; > } > > DynAPI.document.addEventListener(myListener) > } > > When i try the above code the only event which works is the > onmousemove... > > Can any one help me? Why is this happening? > > Thank you > > Andreas Gortsilas > ********************************* > * Andreas Gortsilas > * Systems Engineer - R&D > * Quality Manager - R&D > * Singular Computer Applications > * Tel.: (301) 64 79 600 (688) > * SMTP: ag...@si... > * HTTP://www.singular.gr > ********************************* > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: GORTSILAS A. <ag...@si...> - 2001-01-18 12:18:34
|
Hello, I am new to DynAPI ... I decided to try the dynacode dynapi distribution... the sources I use are 2001-01-13... I am trying to catch the onresize event of the browser window in order to keep a layer centered in the window frame... A sample code I use is: DynAPI.onLoad=function() { myListener = new EventListener() myListener.onmouseup=function(e) { alert('Document Clicked') } myListener.onmousemove=function(e) { status="x="+e.x+" y="+e.y; } myListener.onresize=function(e) { status="onresize"; } DynAPI.document.addEventListener(myListener) } When i try the above code the only event which works is the onmousemove... Can any one help me? Why is this happening? Thank you Andreas Gortsilas ********************************* * Andreas Gortsilas * Systems Engineer - R&D * Quality Manager - R&D * Singular Computer Applications * Tel.: (301) 64 79 600 (688) * SMTP: ag...@si... * HTTP://www.singular.gr ********************************* |
From: <cam...@ya...> - 2001-01-18 11:33:20
|
I've attached an updated loadpanel with Netscape 6 support. I've got the Autoresize working. There are still some issues though. For one, css styles are not being applied to whatever's being loaded into LoadPanel. I have no idea why not. Images aren't always being loaded, this is also a problem with IE. Apart from the NS6 modifications, I've added a 'false' parameter to all setHTML calls, as I believe LoadPanel should not invoke load events unless something is actually loaded. I've also got some suggested updates for dynlayer.js. The first is to setHTML, I've added the noevent check to the beforeload event invocation. Also, I've moved this.elm.innerHTML into the else block because this was setting the HTML twice in NS6, and I don't think NS4 needs innerHTML to be set? 423,424c423 < this.invokeEvent("beforeload"); < this.elm.innerHTML=html; --- > if (noevt!=false) this.invokeEvent("beforeload"); 441c440,441 < else { --- > else { > this.elm.innerHTML=html; I've changed getContentWidth and getContentHeight to support NS6, although I haven't really tested this bit properly so I'm not sure that it works: 485c485,489 < return this.elm==null? 0 : (is.ns4? this.doc.width : parseInt(this.elm.scrollWidth)); --- > if (this.elm==null) return 0; > else if (is.ns4) return this.doc.width; > else if (is.ns5) return this.elm.offsetWidth; > else return parseInt(this.elm.scrollWidth); > // return this.elm==null? 0 : (is.ns4? this.doc.width : parseInt(this.elm.scrollWidth)); 488c492,496 < return this.elm==null? 0 : (is.ns4? this.doc.height : parseInt(this.elm.scrollHeight)); --- > if (this.elm==null) return 0; > else if (is.ns4) return this.doc.height; > else if (is.ns5) return this.elm.offsetHeight; > else return parseInt(this.elm.scrollHeight); > // return this.elm==null? 0 : (is.ns4? this.doc.height : parseInt(this.elm.scrollHeight)); If there aren't any problems with these changes, I'd like to add the NS6 enabled LoadPanel to CVS, and the changes to setHTML. Cheers Cameron. __________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ |
From: Raymond S. <dst...@or...> - 2001-01-18 09:48:24
|
I've had good luck with NS4+ Mac. Anything "really" dynamic is gonna be a problem in IE5 Mac do to getHeight, getWidth bug. I've been telling clints that support for IE5 on Mac means significant reduction in dynamic functionality. Unless somebody has solved for this. IE4 Mac, is a 'buggermuck' don't even waste braincalories on that one. Later ----- Original Message ----- From: "Morten Sabro" <ms...@in...> To: <dyn...@li...> Sent: Thursday, January 18, 2001 1:22 AM Subject: [Dynapi-Dev] [Dynapi2] Mac probs > Hello > I have to get Dynapi2 running on macIE AND macNS. I tried the new > Dynwindow.html and the result was desapointing. I have used Dynapi1 for a > while now and I dont have the same problems with mac. Is there allready a > solution for my problem? If not I will try to find a solution and post it > as soon as possible. > > > Sorry if Im repeating an old question (and for my spelling). > > - > ------------------------------------------ > vh. > Morten Sabro > InCorp A/S > Middelfartvej 9-11 > 5000 Odense C > ------------------------------------------ > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Morten S. <ms...@in...> - 2001-01-18 09:32:51
|
Hello I have to get Dynapi2 running on macIE AND macNS. I tried the new Dynwindow.html and the result was desapointing. I have used Dynapi1 for a while now and I dont have the same problems with mac. Is there allready a solution for my problem? If not I will try to find a solution and post it as soon as possible. Sorry if Im repeating an old question (and for my spelling). - ------------------------------------------ vh. Morten Sabro InCorp A/S Middelfartvej 9-11 5000 Odense C ------------------------------------------ |
From: Michael P. <mp...@ph...> - 2001-01-18 05:33:12
|
<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <html> I've found a way of getting NS and IE to capture errors and allow me to display them in a more meaningful fashion. <p>I've added the following method to my dynapi.js: <p><tt> errors : [],</tt> <br><tt> displayerrors : true,</tt> <p><tt> errorHandler : function (msg, url, lno) {</tt> <br><tt> DynAPI.errors[DynAPI.errors.length] = [url,lno,msg];</tt> <br><tt> if (DynAPI.loaded&&DynAPI.displayerrors) alert("Error in '"+url+"'.\nLine number: "+lno+".\nMessage: "+msg);</tt> <br><tt> return true;</tt> <br><tt> },</tt> <br><tt> errorOutput : function () {</tt> <br><tt> errWindow=window.open('','','left=50,top=50,width=560,height=430');</tt> <br><tt> errWindow.document.writeln('<html><title>Have made an error!!!</title><B>Error Report</B><P>');</tt> <br><tt> errWindow.document.writeln('<table width=95%>');</tt> <br><tt> for (var i=0; i < DynAPI.errors.length; i++) {</tt> <br><tt> errWindow.document.write('<tr><td>');</tt> <br><tt> if (DynAPI.errors[i][0]) errWindow.document.write("<B>Error in file:</B> <a href='"+DynAPI.errors[i][0]+ "'>" DynAPI.errors[i][0] + "</a><br>");</tt> <br><tt> if (DynAPI.errors[i][1]) errWindow.document.write("<B>Line number:</B> " + DynAPI.errors[i][1] + "<br>");</tt> <br><tt> if (DynAPI.errors[i][2]) errWindow.document.write("<B>Message:</B> <pre>" + DynAPI.errors[i][2] + "</pre>");</tt> <br><tt> errWindow.document.writeln('</td></tr>');</tt> <br><tt> };</tt> <br><tt> errWindow.document.writeln('</table>');</tt> <br><tt> errWindow.document.close();</tt> <br><tt> },</tt> <p>the following line has been added to the end of the loadhandler: <p><tt> if (DynAPI.errors.length&&DynAPI.displayerrors) DynAPI.errorOutput();</tt> <p>the following line has been added to the end of dynapi.js: <p>onerror = DynAPI.errorHandler; <p>this means that all the lines in the API that previosly used alerts to display errors can now use: <br><tt> DynAPI.errorHandler(null,null,"The following package could not be loaded: <b>"+src+"</b> \nMake sure you specified the correct path.");</tt> <p>-- <br>Michael Pemberton <br>mp...@ph... <br>ICQ: 12107010 <br> </html> |
From: <wan...@ya...> - 2001-01-17 17:32:29
|
olvidaste enviar el zip... :) ----- Original Message ----- From: "Patricia Fesser" <tec...@ca...> To: <dyn...@li...> Sent: Wednesday, January 17, 2001 5:46 PM Subject: [Dynapi-Dev] corePopUp & Frames > I've been looking through the mailing lists and wasn't able to find an > answer to my problem, so after trying around for three intensive days I'm > posting it along with the example files in a Zip file (Pruebas.zip): > I'm working with the new DynApi. I've a frames construction as follows: > frame "margen" contains a page called margenJS.htm which contains all of the > api libs and the DynApi.onload function. I've added a folder called "aries" > into the dynacore folder, which contains all of my code, so I can use the > include() method for those files also. Into that folder there are two files > beeing used: > menuAries.js: contains the DynDocument construction for the frames, and the > corePopUp construction. > frame "datos1"contains a page called margen_datos1.htm, which contanis an > array of elements, which are the items that have to be added to the > corePopUp. > frame "estado" is the frame where the corePopUp is added. > THE PROBLEM > Everything works good as long as I don't load a different page into the > frame "estado". When this is done, it won't send an error, but the CorePuoUp > won't pop. So I tried to execute the addChild(myPopUp1) method again when a > new page is loaded, and i got the message: > "Attempt to add "'+child.id+'" to the document "'+this.dyndoc.id+'" > failed.\n\nThe DynLayer already exists in that DynDocument.\n\nYou must > remove the dynlayer from its parent first." > So, I wonder why if everything exists, it doesn't show. Also I was writing > alerts everywhere, and it will execute, the CorePopUp is set to visible, the > z-index, etc. but it doesn't show....where the ! is it poping > up?!!!!!!!!!!!!!!!!!! > -------------------------------------------------------------------------- -- > -------------------------------------------------------------------------- -- > --------- > another problem I had > (by the way!) > When I started using this Construction in the beginnning, everything was the > same it is now, but the corePopUp coonstruction. > Now I'm puting all the "myPopUp1.add()" sentences into a function called > cargaMenu(). I'm calling that function from the DynApi.onload= function(){}. > I made it this way, because otherwise, the myPopUp1.add() method was working > only the first time I executed it after the computer was started, and never > again! ONLY after the computer was restarted, if i restarted only the user > session it wouldn't work neither. The corePopUp was working, but it wasn't > adding the items. > P.D.: I'm a designer who is working with JavaScript since a couple of > months, so I'm not that skilled yet. > Thanks a lot. > Pat > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: Doug M. <do...@cr...> - 2001-01-17 17:28:02
|
It would seem that we do indeed have a lady in the house.. :-) Doug Melvin ----- Original Message ----- From: "Patricia Fesser" <tec...@ca...> To: <dyn...@li...> Sent: Wednesday, January 17, 2001 9:21 AM Subject: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) > > > > > I've been looking through the mailing lists and wasn't able to find an > answer to my problem, so after trying around for three intensive days I'm > posting it along with the example files in a Zip file (Pruebas.zip): > I'm working with the new DynApi. I've a frames construction as follows: > frame "margen" contains a page called margenJS.htm which contains all of the > api libs and the DynApi.onload function. I've added a folder called "aries" > into the dynacore folder, which contains all of my code, so I can use the > include() method for those files also. Into that folder there are two files > beeing used: > menuAries.js: contains the DynDocument construction for the frames, and the > corePopUp construction. > frame "datos1"contains a page called margen_datos1.htm, which contanis an > array of elements, which are the items that have to be added to the > corePopUp. > frame "estado" is the frame where the corePopUp is added. > THE PROBLEM > Everything works good as long as I don't load a different page into the > frame "estado". When this is done, it won't send an error, but the CorePuoUp > won't pop. So I tried to execute the addChild(myPopUp1) method again when a > new page is loaded, and i got the message: > "Attempt to add "'+child.id+'" to the document "'+this.dyndoc.id+'" > failed.\n\nThe DynLayer already exists in that DynDocument.\n\nYou must > remove the dynlayer from its parent first." > So, I wonder why if everything exists, it doesn't show. Also I was writing > alerts everywhere, and it will execute, the CorePopUp is set to visible, the > z-index, etc. but it doesn't show....where the ! is it poping > up?!!!!!!!!!!!!!!!!!! > -------------------------------------------------------------------------- -- > -------------------------------------------------------------------------- -- > --------- > another problem I had > (by the way!) > When I started using this Construction in the beginnning, everything was the > same it is now, but the corePopUp coonstruction. > Now I'm puting all the "myPopUp1.add()" sentences into a function called > cargaMenu(). I'm calling that function from the DynApi.onload= function(){}. > I made it this way, because otherwise, the myPopUp1.add() method was working > only the first time I executed it after the computer was started, and never > again! ONLY after the computer was restarted, if i restarted only the user > session it wouldn't work neither. The corePopUp was working, but it wasn't > adding the items. > P.D.: I'm a designer who is working with JavaScript since a couple of > months, so I'm not that skilled yet. > Thanks a lot. > Pat > > |
From: Patricia F. <tec...@ca...> - 2001-01-17 17:23:55
|
I've been looking through the mailing lists and wasn't able to find an answer to my problem, so after trying around for three intensive days I'm posting it along with the example files in a Zip file (Pruebas.zip): I'm working with the new DynApi. I've a frames construction as follows: frame "margen" contains a page called margenJS.htm which contains all of the api libs and the DynApi.onload function. I've added a folder called "aries" into the dynacore folder, which contains all of my code, so I can use the include() method for those files also. Into that folder there are two files beeing used: menuAries.js: contains the DynDocument construction for the frames, and the corePopUp construction. frame "datos1"contains a page called margen_datos1.htm, which contanis an array of elements, which are the items that have to be added to the corePopUp. frame "estado" is the frame where the corePopUp is added. THE PROBLEM Everything works good as long as I don't load a different page into the frame "estado". When this is done, it won't send an error, but the CorePuoUp won't pop. So I tried to execute the addChild(myPopUp1) method again when a new page is loaded, and i got the message: "Attempt to add "'+child.id+'" to the document "'+this.dyndoc.id+'" failed.\n\nThe DynLayer already exists in that DynDocument.\n\nYou must remove the dynlayer from its parent first." So, I wonder why if everything exists, it doesn't show. Also I was writing alerts everywhere, and it will execute, the CorePopUp is set to visible, the z-index, etc. but it doesn't show....where the ! is it poping up?!!!!!!!!!!!!!!!!!! ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- --------- another problem I had (by the way!) When I started using this Construction in the beginnning, everything was the same it is now, but the corePopUp coonstruction. Now I'm puting all the "myPopUp1.add()" sentences into a function called cargaMenu(). I'm calling that function from the DynApi.onload= function(){}. I made it this way, because otherwise, the myPopUp1.add() method was working only the first time I executed it after the computer was started, and never again! ONLY after the computer was restarted, if i restarted only the user session it wouldn't work neither. The corePopUp was working, but it wasn't adding the items. P.D.: I'm a designer who is working with JavaScript since a couple of months, so I'm not that skilled yet. Thanks a lot. Pat |
From: <cam...@ya...> - 2001-01-17 17:05:48
|
I made the following changes to the api.gui.dynimage.html example to reproduce the problem. Note that it only happens if I view the image over a web server, if I open the page as a local file I think the image loads fast enough to get the size correctly. //img = new DynImage(uimg); img = new DynImage('../src/lib/dynapi/images/common/arrowup.gif'); img.setBgColor('#ff0000'); Also if you add the following code after the above and view the page over a web server, you will notice that the image gets added to loadimages even though it's already there. I've posted a bug report about this also. var str = ""; for(var i=0;i<DynImage.loadimages.length;i++) str += DynImage.loadimages[i].img.src + '\n'; alert(str); --- Cameron Hart <cam...@ya...> wrote: > Hmm, I don't have a straight forward example (the > DynImage's I'm using are buried in everything else > I'm > working on at the moment). I'll try and come up with > an example. > > > --- Robert Rainwater <rra...@ya...> wrote: > > > > I'm using IE 5.5 sp1 and the image size returned > > from DynImage is > > always correct when I do not pass an image size. > Do > > you have an > > example where this is not working? > > > > -- > > // Robert Rainwater > > > > On 1/17/2001, 6:23:12 AM EST, noreply wrote about > > "[Dynapi-Dev] [Bug #129040] DynImage default image > > size incorrect in IE5.5": > > > > > Bug #129040, was updated on 2001-Jan-16 11:08 > > > Here is a current snapshot of the bug. > > > > > Project: DynAPI 2 > > > Category: None > > > Status: Open > > > Resolution: None > > > Bug Group: None > > > Priority: 5 > > > Submitted by: camhart > > > Assigned to : nobody > > > Summary: DynImage default image size incorrect > in > > IE5.5 > > > > > Details: When creating a DynImage without > setting > > a size, IE5.5 always > > > defaults to the same (incorrect) size. > > > > > I'm not sure where IE5.5 is getting this size > > from. This bug may apply to > > > IE5 also. > > > > > Follow-Ups: > > > > > Date: 2001-Jan-17 03:23 > > > By: nobody > > > > > Comment: > > > It appears that the incorrect height and width > is > > being returned by > > > getContentHeight and getContentWidth in > > dynlayer.js. It to be returning a > > > default of w=28 and h=30. > > > > > > ------------------------------------------------------- > > > > > For detailed info, follow this link: > > > > > > http://sourceforge.net/bugs/?func=detailbug&bug_id=129040&group_id=5757 > > > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > > > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > > > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > > > > > __________________________________________________ > Do You Yahoo!? > Get email at your own domain with Yahoo! Mail. > http://personal.mail.yahoo.com/ > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > __________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ |