You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Brandon M. <bnd...@ho...> - 2000-11-28 23:21:50
|
Sure.. just creat your own widget based on that select widget. If you can improve on what we already have, great. The API is always in need of improvement. ----- Original Message ----- From: "Jason Wehmhoener" <ja...@ed...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 6:01 PM Subject: [Dynapi-Help] list question (dynapi 1) > The dynapi example for a multiSelect List does this: > > for (i=0;i<mylist.items.length;i++) { > if (mylist.items[i].selected) str += i+'\n' > } > > What I would like to do is something like this: > > for (i=0;i<mylist.items.length;i++) { > if (mylist.items[i].selected) str += mylist.myvalue+'\n' > } > > With 'myvalue' being the text that is displayed in the list, or better > yet, an argument defined by mylist.add. > > Is something like this possible? > > Thanks, > Jason > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Brandon M. <bnd...@ho...> - 2000-11-28 23:20:21
|
I have wrote the BorderFactory widget, included in long ago releases, which allows custom borders to be created, and dynamicly assigned to DynLayers. It has been debugged, enhanced with the SuperClass object, and will be available soon. Layers to which it is assigned do not have a requirement of using the SuperClass. ----- Original Message ----- From: "Dan Steinman" <dy...@fu...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 11:23 PM Subject: Re: [Dynapi-Help] Borders > In order to do this so that it works in Netscape it would be best to create a "Border" widget. I think there was some older code that someone wrote which would do this to some degree. If you wanted a quickstart you could use my Button widget which basically does what you want (has four 1px layers inside another) plus has a label inside. It could be improved for IE by using some specific calls to put borders on the html element. > > Dan > > On Wed, Nov 29, 2000 at 07:35:54AM +1100, Max Campsell wrote: > > Hi, > > > > I am new to the DynamicAPI, but I am impressed with what I have tried so far. When using Div's I like to place a colored border. > > > > eg: > > style="BACKGROUND: lightslategray; BORDER-BOTTOM: lightsalmon 2px solid; BORDER-LEFT: lightsalmon 2px solid; BORDER-RIGHT: lightsalmon 2px solid; BORDER-TOP: lightsalmon 2px solid; HEIGHT: 251px; LEFT: 27px; POSITION: absolute; TOP: 45px; WIDTH: 541px" > > > > Could you tell me how I can achieve this using the Dynamic Layers? > > > > Hope you can assist. > > > > Thanks Max Campsell > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Matthew S. <PK...@Tu...> - 2000-11-28 23:17:16
|
Instead try this for a link... <a href="#" OnClick="someFunction();return false">Link Text<a/> using "javascript:" causes many problems, one of which is the one you are having. Don't forget the "return false" it needs to be there. Hope this helps, -- Matthew -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Tomas Kdllsen Sent: Tuesday, November 28, 2000 2:19 PM To: dyn...@li... Subject: [Dynapi-Help] Problems with IE mousepointer Hi, I know this is not really the place to ask this question, but I don't know where else to post it... with several of my scripts I have a problem with the IE mousepointer when you click on a link that executes a script; an hourglas next to the mouse pointer, even though the page has finished loading. Anyone know the reason for this? This usually happends when I use "javascript: void(0)" in the HREF of a link. Thanks // Tomas _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Doug M. <do...@cr...> - 2000-11-28 23:13:17
|
onCLick is not suppoerted by Netscape... ----- Original Message ----- From: "Scott Andrew LePera" <sc...@sc...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 2:50 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer The "javascript:" protocol is probably still seen by the browser as being a request. Try using onClick instead and see if that helps. -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com "Tomas Källsen" wrote: > > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Dan S. <dy...@fu...> - 2000-11-28 23:04:57
|
I have a partially rewritten List object which needs to be updated a tiny bit to work with the latest DynAPI release. However I think indexes are enough for most cases (though I think it should be returned as an array). You can just build a custom listener, which does whatever you need with the selected indexes. Dan On Tue, Nov 28, 2000 at 02:32:44PM -0800, Jason Wehmhoener wrote: > The dynapi example for a multiSelect List does this: > > for (i=0;i<mylist.items.length;i++) { > if (mylist.items[i].selected) str += i+'\n' > } > > What I would like to do is something like this: > > for (i=0;i<mylist.items.length;i++) { > if (mylist.items[i].selected) str += mylist.myvalue+'\n' > } > > With 'myvalue' being the text that is displayed in the list, or better yet, > an argument defined by mylist.add. > > Is something like this possible? > > Thanks, > Jason > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Jason W. <ja...@ed...> - 2000-11-28 23:01:58
|
The dynapi example for a multiSelect List does this: for (i=0;i<mylist.items.length;i++) { if (mylist.items[i].selected) str += i+'\n' } What I would like to do is something like this: for (i=0;i<mylist.items.length;i++) { if (mylist.items[i].selected) str += mylist.myvalue+'\n' } With 'myvalue' being the text that is displayed in the list, or better yet, an argument defined by mylist.add. Is something like this possible? Thanks, Jason |
From: Dan S. <dy...@fu...> - 2000-11-28 23:00:47
|
In order to do this so that it works in Netscape it would be best to create a "Border" widget. I think there was some older code that someone wrote which would do this to some degree. If you wanted a quickstart you could use my Button widget which basically does what you want (has four 1px layers inside another) plus has a label inside. It could be improved for IE by using some specific calls to put borders on the html element. Dan On Wed, Nov 29, 2000 at 07:35:54AM +1100, Max Campsell wrote: > Hi, > > I am new to the DynamicAPI, but I am impressed with what I have tried so far. When using Div's I like to place a colored border. > > eg: > style="BACKGROUND: lightslategray; BORDER-BOTTOM: lightsalmon 2px solid; BORDER-LEFT: lightsalmon 2px solid; BORDER-RIGHT: lightsalmon 2px solid; BORDER-TOP: lightsalmon 2px solid; HEIGHT: 251px; LEFT: 27px; POSITION: absolute; TOP: 45px; WIDTH: 541px" > > Could you tell me how I can achieve this using the Dynamic Layers? > > Hope you can assist. > > Thanks Max Campsell |
From: Matthew S. <PK...@Tu...> - 2000-11-28 22:51:26
|
I have experienced this as well. I was assuming it was a problem with IE 5.5. I don't have a fix for you but I thought you might like to know you are not the only one. My page is quite simple. It only uses one inline layer. Yet after 15-20 reloads I get the same delay in rendering that you mentioned. -- Matthew -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Andrew Forber Sent: Monday, November 27, 2000 1:13 PM To: dyn...@li... Subject: [Dynapi-Help] Repeat - mem leak question Folks, I apologize if this message turns out to be a repeat, my email has been precarious today. First, please let me echo the comments of everyone here who has thanked the developers of this great package. It's a great learning tool as well as a useful package. I'm using the popup widget to display nested menus in a simple web application, and I'm having a problem with Internet Explorer. Every time I load the page containing the popup it takes a bit longer to load, and every time Internet Explorer 5.5 uses about 2 megs more of RAM. After loading the page 15 or 20 times it seems that the page loads instantly from the server, but there's a delay of 7 or 8 seconds before the browser displays the top popup. (This is on a 400MHZ P2.) (IE4.5 on the Mac never does get enough ram to display my popups even once. Netscape seems fine.) I've tried adding alert()'s to the onDelete functions of the various dynlayer-derived classes and verified that they're being called. If I can't fix this problem I'll have to scrap what I've done and use something other than these routines, and I don't want to do that. Does anyone else have this experience? Is there a workaround? I know there was a memory leak in innerHTML in IE 5.0, but it's supposed to have been fixed. Thanks! Andrew Forber _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Scott A. L. <sc...@sc...> - 2000-11-28 22:51:01
|
The "javascript:" protocol is probably still seen by the browser as being a request. Try using onClick instead and see if that helps. -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com "Tomas Källsen" wrote: > > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Jason W. <jwe...@ci...> - 2000-11-28 22:33:29
|
The dynapi example for a multiSelect List does this: for (i=0;i<mylist.items.length;i++) { if (mylist.items[i].selected) str += i+'\n' } What I would like to do is something like this: for (i=0;i<mylist.items.length;i++) { if (mylist.items[i].selected) str += mylist.myvalue+'\n' } With 'myvalue' being the text that is displayed in the list, or better yet, an argument defined by mylist.add. Is something like this possible? Thanks, Jason |
From: Tomas K. <tom...@ne...> - 2000-11-28 22:18:12
|
Hi, I know this is not really the place to ask this question, but I don't know where else to post it... with several of my scripts I have a problem with the IE mousepointer when you click on a link that executes a script; an hourglas next to the mouse pointer, even though the page has finished loading. Anyone know the reason for this? This usually happends when I use "javascript: void(0)" in the HREF of a link. Thanks // Tomas |
From: Doug M. <do...@cr...> - 2000-11-28 22:04:52
|
submenuobject = new menuobject ? ----- Original Message ----- From: "Holger Zantl" <h....@at...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 1:09 PM Subject: [Dynapi-Help] making object copy not reference > Hi, I try to make a menu widget and now I have the Problem that I need > a copy of an object for the submenus, but a simple > "submenuobject = menuobject" references the original object so that any > changes I make to the submenu are made to the parent menu as well. > > Is there a way to make a copy of an object or do I have to build a > new object and copy each value to it, which would heavily increase the > size of the widget? > > for the object functions it's not a big problem, since they're static, > but at the point where I need the copy there may be a lot of changes > done to the properties. > > I hope I wrote understandable > > Yours, Holger > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Matthew S. <PK...@Tu...> - 2000-11-28 22:02:41
|
I would also like to see an example of this. Please. -- Matthew -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Brian Snipes Sent: Tuesday, November 28, 2000 12:33 PM To: dyn...@li... Subject: [Dynapi-Help] Can anyone post an example of inline layer with children I need an inline layer on the page and children to be added to it. But I can't seem to be able to get the children to show up in the inline layer, they always show up further down the page and visible :-( -- Brian Snipes _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Brandon M. <bnd...@ho...> - 2000-11-28 21:55:49
|
You'll be happy to know that I have built a Clone() method into my SuperClass object that I am hoping to release soon. It is only a shallow copy. It is simple to override the clone method in order to properly clone the properties that you know should be copied further. The great thing here is that all objects who use SuperClass as their "Super" class inherit a TON of functionality. (Docs and examples will explain it all.) ----- Original Message ----- From: "Holger Zantl" <h....@at...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 4:09 PM Subject: [Dynapi-Help] making object copy not reference > Hi, I try to make a menu widget and now I have the Problem that I need > a copy of an object for the submenus, but a simple > "submenuobject = menuobject" references the original object so that any > changes I make to the submenu are made to the parent menu as well. > > Is there a way to make a copy of an object or do I have to build a > new object and copy each value to it, which would heavily increase the > size of the widget? > > for the object functions it's not a big problem, since they're static, > but at the point where I need the copy there may be a lot of changes > done to the properties. > > I hope I wrote understandable > > Yours, Holger > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Holger Z. <h....@at...> - 2000-11-28 21:08:28
|
Hi, I try to make a menu widget and now I have the Problem that I need a copy of an object for the submenus, but a simple "submenuobject = menuobject" references the original object so that any changes I make to the submenu are made to the parent menu as well. Is there a way to make a copy of an object or do I have to build a new object and copy each value to it, which would heavily increase the size of the widget? for the object functions it's not a big problem, since they're static, but at the point where I need the copy there may be a lot of changes done to the properties. I hope I wrote understandable Yours, Holger |
From: Max C. <ma...@bi...> - 2000-11-28 20:36:02
|
Hi, I am new to the DynamicAPI, but I am impressed with what I have tried so = far. When using Div's I like to place a colored border. eg: style=3D"BACKGROUND: lightslategray; BORDER-BOTTOM: lightsalmon 2px = solid; BORDER-LEFT: lightsalmon 2px solid; BORDER-RIGHT: lightsalmon 2px = solid; BORDER-TOP: lightsalmon 2px solid; HEIGHT: 251px; LEFT: 27px; = POSITION: absolute; TOP: 45px; WIDTH: 541px" Could you tell me how I can achieve this using the Dynamic Layers? Hope you can assist. Thanks Max Campsell |
From: Brian S. <bs...@so...> - 2000-11-28 20:33:08
|
I need an inline layer on the page and children to be added to it. But I can't seem to be able to get the children to show up in the inline layer, they always show up further down the page and visible :-( -- Brian Snipes |
From: Tarun R E. <ta...@we...> - 2000-11-28 19:47:00
|
Didnt clearly understand : is it Netscape or IE or both thats giving the problem ? When faced with this kind of a situation, I usually use a different (and safer) design : I keep 2 frames : one hidden( rows and cols as zero) and the other as the main frame. When I want content to be loaded into any widget, I submit a form in the hidden frame that then retrieves the HTML content from the server into a textbox. Then I use JScript to read this textbox, and update the widget in the main frame with the contents of the textbox. Yeah! I know its a bit messy, however its more reliable, and you can abstract the details with a little bit of savvy. ----- Original Message ----- From: "Cameron Hart" <ca...@bi...> To: "Dynapi-Help (E-mail)" <dyn...@li...> Sent: Tuesday, November 28, 2000 11:51 PM Subject: [Dynapi-Help] targeting a loadpanel with a form > Hi, > > I am trying to use loadpanel to firstly load a form from another html file > (this works okay). The next thing I want to do is submit the form using the > POST method and have the form response load back into the loadpanel. I did I > test using a plain html version and I could get IE to load the form response > into a named IFRAME, I didn't have any success with Netscape though. I > haven't managed to get this to work using loadpanel though, loadpanel > doesn't appear to name the IFRAME, and even when I tried hard coding a name > in the code, IE still didn't recognise it. > > What I want to know is has anyone tried and succeded in doing such a thing? > It seems like sending the form data using GET would work, but is it possible > using POST? > > Thanks, > > Cameron. > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Tarun R E. <ta...@we...> - 2000-11-28 19:29:05
|
Duh! I feel like a chump! The answer was starting at us in the face. Just replace the variable 'scroll' with any other variable say 'bingo' for example and presto everythings suddenly fine and jeez, to think that I wasted an entire day over this!!! Learned one lesson though -- never keep the variable name as "scroll" -- it conflicts with something in Internet Explorer. And by the way Andrew, you cant put a "var" in front of the ScrollPane reference, that will make it a local variable instead of a global one. Thanks Dan! There was nothing wrong with your widget after all! ----- Original Message ----- From: "Andrew Moss" <and...@vi...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 11:20 PM Subject: RE: [Dynapi-Help] Help with ScrollPane > I too am looking for a working ScrollPane, I have found that replacing this > line in dynapi.gui.scrollpane.html : > > scroll = new ScrollPane(label1) // label1 will be set as the content > > with : > > var scroll = new ScrollPane(label1) // label1 will be set as the content > > at least displays the ScrollPane, but then the setSize and setContent don't > work, hmmm... any ideas? > > Andrew Moss > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Doug Melvin > Sent: 28 November 2000 19:36 > To: dyn...@li... > Subject: Re: [Dynapi-Help] Help with ScrollPane > > > Well, I am going to need to use the scrollBar (or scrollpane) this week as > the deadline for this project draws near.. > sO, if anyone HAS fixed their copy PLEASE let me know, if not tho, then > expect a fixed copy from myself later this week.. (It has to work, so I'll > have to fix it wirght?) > > I do hope someone beats me to it though.. Be warned.. my version WILL have > semicolons. :-) > > Thank you, > Doug Melvin > Integrated System Solutions: Design, Development, Implementation and Support > Creative-Workshop.com > ----- Original Message ----- > From: "Tarun R Elankath" <ta...@we...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 7:48 AM > Subject: [Dynapi-Help] Help with ScrollPane > > > > Help Dan! > > > > The ScrollPane widget doesnt seem to be working in IE. The weird thing is > > that works perfectly in Netscape, and there doesnt seem to be anything > wrong > > with the code. However "oncreate" is not called in the case of IE, and > > nothing appears on the screen. > > > > The example that you have provided with this widget also doesnt work at > > first. One needs to set the path to the scrollpane images and then it > works > > fine, but only in Netscape. :-( > > > > Any ideas or suggestions to get it working ? > > > > ----- Original Message ----- > > From: "Dave Rattray" <da...@ia...> > > To: <dyn...@li...> > > Sent: Tuesday, November 28, 2000 6:16 PM > > Subject: [Dynapi-Help] new to DynApi 2 > > > > > > > I'm new to this version of DynApi and am having trouble getting to grips > > > with it. I downloaded the link that Dan provided: > > > > > > http://fury161.dyndns.org/dynapi-2000.11.07-danwidgets.zip > > > > > > but didn't see any clear cut files showing me Scrollpane, Scrollbar, > > Button, > > > Label, ButtonImage and PushPanel. Am I overlooking something? Can > someone > > > point me in the right direction. > > > > > > I found the tutorials on dansteinman.com for the original DynAPI > dynlayer > > > very useful in learning everything but have not found anything like that > > so > > > far for DynAPI 2. > > > > > > I need help basically in the knowledge of how images are swapped in this > > new > > > version within layers and how to do the scroll window. > > > > > > Help?! > > > > > > ----------------------------------------------- > > > Dave Rattray > > > Web Developer > > > > > > Interactive Bureau > > > Holborn Gate > > > 26 Southampton Buildings > > > London WC2A 1PJ > > > > > > Phone: 020 7861 3939 > > > Fax: 020 7861 3940 > > > Internet: http://www.iablondon.com/ > > > ----------------------------------------------- > > > > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Tarun R E. <ta...@we...> - 2000-11-28 19:11:26
|
This was fixed in a later version of the API. What version are you using now ? Gimme the version number and maybe I can mail you the corrected dynapi.ext.inline.js ----- Original Message ----- From: "Ed McNierney" <Ed...@to...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 11:17 PM Subject: [Dynapi-Help] onclick problems with Netscape 4.7/Windows? > I've got some inline layers doing some very simple event handling. I'm > capturing onmouseover, onmouseout, onmousemove, and onclick events. All is > fine in IE and in NS EXCEPT that the onclick event just doesn't happen at > all in Netscape. The other mouse events seem to be fine, so it doesn't > appear to be some broader problem getting the events. But when I click, > nothing happens. Code is below - I've modified it just to pop up an alert > whenever there's a click. > > Test page is at > http://test.topozone.com/maptools/xdynamap.asp?lat=26.7462&lon=-80.0359&s=25 > &size=s > > Thanks! > > - Ed > > <script language="JavaScript"> > DynAPI.setLibraryPath('/scripts/dynapi/js/lib/') > DynAPI.include('dynapi.api.browser.js') > DynAPI.include('dynapi.api.dynlayer.js') > DynAPI.include('dynapi.api.dyndocument.js') > DynAPI.include('dynapi.api.events.js') > DynAPI.include('dynapi.ext.inline.js') > > DynAPI.onLoad = function() > { > overlayDynLayer = DynAPI.document.all['overlayLayer']; > symbolDynLayer = DynAPI.document.all['symbolLayer']; > coordDynLayer = DynAPI.document.all['coordLayer']; > > overlayListener = new EventListener (overlayDynLayer); > overlayListener.onmouseover = function (e) { > doMapOver (e.getX (), e.getY ()); > } > overlayListener.onmousemove = overlayListener.onmouseover; > overlayListener.onmouseout = function (e) { > doMapClear (); > } > overlayListener.onclick = function (e) {alert ("Click: " + e.getX () > + ", " + e.getY ());} > > // overlayListener.onclick = function (e) { > // doMapClick (e.getX (), e.getY ()); > // } > overlayDynLayer.addEventListener (overlayListener); > > isLoaded = true; > if (is.ie) symbolDynLayer.setY(symbolDynLayer.getY() - 3); > > toggleSymbol (symState); > } > </script> > > > Ed McNierney > Executive Vice President and Chief Mapmaker > TopoZone.com / Maps a la carte, Inc. > 73 Princeton Street, Suite 305 > North Chelmsford, MA 01863 > (978) 251-4242 > ed...@to... > www.topozone.com > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: <abe...@al...> - 2000-11-28 18:44:52
|
im in the same situation. We need some more documentation however, i assume we all are very busy people... We have troubles. well, right now im wondering how to capture keyboard events (using an structure similar to events.js) and how to manage (if it is posible) the onfocus event... Actually i don't know how to generate onfocus event using the cursor arrows, as long as i know, theres no way in wich a DynLayer can receive focus. i remember a tutorial for DynApi that describes the ways of capturing keyboard events (im going to it right now)... but what about onfocus? somebody can giveme any reference? thanks!. -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Dave Rattray Sent: Martes, 28 de Noviembre de 2000 06:46 a.m. To: dyn...@li... Subject: [Dynapi-Help] new to DynApi 2 I'm new to this version of DynApi and am having trouble getting to grips with it. I downloaded the link that Dan provided: http://fury161.dyndns.org/dynapi-2000.11.07-danwidgets.zip but didn't see any clear cut files showing me Scrollpane, Scrollbar, Button, Label, ButtonImage and PushPanel. Am I overlooking something? Can someone point me in the right direction. I found the tutorials on dansteinman.com for the original DynAPI dynlayer very useful in learning everything but have not found anything like that so far for DynAPI 2. I need help basically in the knowledge of how images are swapped in this new version within layers and how to do the scroll window. Help?! |
From: Cameron H. <ca...@bi...> - 2000-11-28 18:17:30
|
Hi, I am trying to use loadpanel to firstly load a form from another html file (this works okay). The next thing I want to do is submit the form using the POST method and have the form response load back into the loadpanel. I did I test using a plain html version and I could get IE to load the form response into a named IFRAME, I didn't have any success with Netscape though. I haven't managed to get this to work using loadpanel though, loadpanel doesn't appear to name the IFRAME, and even when I tried hard coding a name in the code, IE still didn't recognise it. What I want to know is has anyone tried and succeded in doing such a thing? It seems like sending the form data using GET would work, but is it possible using POST? Thanks, Cameron. |
From: R. S. F. <sf...@ps...> - 2000-11-28 17:54:13
|
Can anyone provide an example of how to use the functions in images.js? I'm guessing these are for pre-loading but I can't make out how it works. Thanks. Sean [R. Sean Fulton | Public Information Specialist | sf...@ps...] [***** Pittsburgh Supercomputing Center | 412/268-7141 *****] |
From: Ed M. <Ed...@to...> - 2000-11-28 17:47:54
|
I've got some inline layers doing some very simple event handling. I'm capturing onmouseover, onmouseout, onmousemove, and onclick events. All is fine in IE and in NS EXCEPT that the onclick event just doesn't happen at all in Netscape. The other mouse events seem to be fine, so it doesn't appear to be some broader problem getting the events. But when I click, nothing happens. Code is below - I've modified it just to pop up an alert whenever there's a click. Test page is at http://test.topozone.com/maptools/xdynamap.asp?lat=26.7462&lon=-80.0359&s=25 &size=s Thanks! - Ed <script language="JavaScript"> DynAPI.setLibraryPath('/scripts/dynapi/js/lib/') DynAPI.include('dynapi.api.browser.js') DynAPI.include('dynapi.api.dynlayer.js') DynAPI.include('dynapi.api.dyndocument.js') DynAPI.include('dynapi.api.events.js') DynAPI.include('dynapi.ext.inline.js') DynAPI.onLoad = function() { overlayDynLayer = DynAPI.document.all['overlayLayer']; symbolDynLayer = DynAPI.document.all['symbolLayer']; coordDynLayer = DynAPI.document.all['coordLayer']; overlayListener = new EventListener (overlayDynLayer); overlayListener.onmouseover = function (e) { doMapOver (e.getX (), e.getY ()); } overlayListener.onmousemove = overlayListener.onmouseover; overlayListener.onmouseout = function (e) { doMapClear (); } overlayListener.onclick = function (e) {alert ("Click: " + e.getX () + ", " + e.getY ());} // overlayListener.onclick = function (e) { // doMapClick (e.getX (), e.getY ()); // } overlayDynLayer.addEventListener (overlayListener); isLoaded = true; if (is.ie) symbolDynLayer.setY(symbolDynLayer.getY() - 3); toggleSymbol (symState); } </script> Ed McNierney Executive Vice President and Chief Mapmaker TopoZone.com / Maps a la carte, Inc. 73 Princeton Street, Suite 305 North Chelmsford, MA 01863 (978) 251-4242 ed...@to... www.topozone.com |
From: Andrew M. <and...@vi...> - 2000-11-28 17:45:39
|
I too am looking for a working ScrollPane, I have found that replacing this line in dynapi.gui.scrollpane.html : scroll = new ScrollPane(label1) // label1 will be set as the content with : var scroll = new ScrollPane(label1) // label1 will be set as the content at least displays the ScrollPane, but then the setSize and setContent don't work, hmmm... any ideas? Andrew Moss -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Doug Melvin Sent: 28 November 2000 19:36 To: dyn...@li... Subject: Re: [Dynapi-Help] Help with ScrollPane Well, I am going to need to use the scrollBar (or scrollpane) this week as the deadline for this project draws near.. sO, if anyone HAS fixed their copy PLEASE let me know, if not tho, then expect a fixed copy from myself later this week.. (It has to work, so I'll have to fix it wirght?) I do hope someone beats me to it though.. Be warned.. my version WILL have semicolons. :-) Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and Support Creative-Workshop.com ----- Original Message ----- From: "Tarun R Elankath" <ta...@we...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 7:48 AM Subject: [Dynapi-Help] Help with ScrollPane > Help Dan! > > The ScrollPane widget doesnt seem to be working in IE. The weird thing is > that works perfectly in Netscape, and there doesnt seem to be anything wrong > with the code. However "oncreate" is not called in the case of IE, and > nothing appears on the screen. > > The example that you have provided with this widget also doesnt work at > first. One needs to set the path to the scrollpane images and then it works > fine, but only in Netscape. :-( > > Any ideas or suggestions to get it working ? > > ----- Original Message ----- > From: "Dave Rattray" <da...@ia...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 6:16 PM > Subject: [Dynapi-Help] new to DynApi 2 > > > > I'm new to this version of DynApi and am having trouble getting to grips > > with it. I downloaded the link that Dan provided: > > > > http://fury161.dyndns.org/dynapi-2000.11.07-danwidgets.zip > > > > but didn't see any clear cut files showing me Scrollpane, Scrollbar, > Button, > > Label, ButtonImage and PushPanel. Am I overlooking something? Can someone > > point me in the right direction. > > > > I found the tutorials on dansteinman.com for the original DynAPI dynlayer > > very useful in learning everything but have not found anything like that > so > > far for DynAPI 2. > > > > I need help basically in the knowledge of how images are swapped in this > new > > version within layers and how to do the scroll window. > > > > Help?! > > > > ----------------------------------------------- > > Dave Rattray > > Web Developer > > > > Interactive Bureau > > Holborn Gate > > 26 Southampton Buildings > > London WC2A 1PJ > > > > Phone: 020 7861 3939 > > Fax: 020 7861 3940 > > Internet: http://www.iablondon.com/ > > ----------------------------------------------- > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |