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: <mat...@ya...> - 2003-11-24 13:10:58
|
I'd like to use dynapi to provide scrolling capabilities to a page I'm working on but I was wondering whether anyone had tried this before.....let me describe what I need. I have a large web page, you have to use both scrollbars on the browser window to get to all the content. I want to fix the first column so that it always stays on the left-hand side, but allow scrolling to the rest of the content. This would mean that scrolling up and down scrolls both regions (left and right hand sides) and scrolling down and right would just scroll the right-hand side. ....does this make sense...? Anyway, I can see how I could do this using dynapi but before I dive in a do it I was wondering if anyone had tried anything like this before. Thanks in advance, Matt --------------------------------- Want to chat instantly with your online friends? Get the FREE Yahoo!Messenger |
From: jonathan e. <eis...@st...> - 2003-11-19 19:52:23
|
At 12:58 PM 11/19/2003 -0500, you wrote: >Alternatly, you can load the Base DynAPI without the libraries, and then >load the additional libraries when you need them >(I assume that you can do that..) Well, this is what I thought I was doing per the code snippet originally sent. However, while looking for the frame example, I did run across the example for the extension to library to dynamically load libraries. This appears to be just changing all the dynapi.library.include into dynapi.library.load statements. See the new code snippet below. This all works fine except for DragEvent. At the 'dynapi.library.load("DragEvent")', Mozilla produces an exception with the text "Object cannot be created in this context". Through some testing, it appears that if 'dynapi.api' is loaded dynamically, the DragEvent initialization fails. Summary: the dynapi.library.load method is what I want, and does work. But DragEvent breaks. Code Snippet: <script language="JavaScript" src="/library/dynapi3x/src/dynapi.js" type="text/JavaScript"></script> <script language="JavaScript"> dynapi.library.setPath('/library/dynapi3x/src/'); dynapi.library.include('dynapi.library'); </script> <script language="JavaScript"> dynapi.onLoad( function() { dynapi.library.load('dynapi.api'); dynapi.library.load('dynapi.gui.LoadPanel'); dynapi.library.load('DragEvent'); dynapiLoaded = true; } ); </script> |
From: Doug M. <do...@cr...> - 2003-11-19 17:56:41
|
Okay.. Lookout Express screwed up the last email.. doh. Okay.. I believe there should be a frames demo in the examples folder. This shows you how to use teh dynapi in one frame from another. My suggestion to you is, assuming that frames are an option, use a hidden frame to load the dynapi when you need it. Alternatly, you can load the Base DynAPI without the libraries, and then load the additional libraries when you need them (I assume that you can do that..) Doug ----- Original Message ----- From: "jonathan eisenhamer" <eis...@st...> To: <dyn...@li...> Sent: Wednesday, November 19, 2003 10:06 AM Subject: [Dynapi-Help] Is it possible to load libraries after a page has been loaded. > Greetings, > > I've looked through the archives and haven't found this subject, so > > Basic question: Can the dynapi libraries be loaded after the page has been > loaded. > > Goal: All dynapi functionality on the page is secondary. So, I would like > the page to load and render without having to wait for dynapi to come down > the pipe. Yes, download times over modems is an issue. > > Ideally, I would like to be able to do the following: > > <script language="JavaScript" src="/library/dynapi3x/src/dynapi.js" > type="text/JavaScript"></script> > <script language="JavaScript"> > var allLoaded = false; > dynapi.onLoad(function () { > dynapi.library.setPath('/library/dynapi3x/src/'); > dynapi.library.include('dynapi.library'); > dynapi.library.include('dynapi.api'); > dynapi.library.include('dynapi.gui.LoadPanel'); > dynapi.library.include('DragEvent'); > allLoaded = true; > }); > </script> > > However, when it comes time to use it, I typically get javascript errors > such as "LoadPanel has no properties", etc. > And yes, I do make sure that dynapi is not used until the above function > completes. > > I have tried various forms, including a > setTimeout("a-load-the-libraries-function"), etc., but to no avail. > > The closest I have come is putting the include statements as the last > script on the page, just before the </body> tag. However, this is not > entirely reliable: sometimes the page will render before the includes are > finished, sometimes the page will not render before the includes are finished. > > It appears that the libraries must be loaded before page load finishes. If > this is so, then let me know. Else, if there are other fatal logic flaws, > then send them on. > > Thank you for your time, > jde > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.541 / Virus Database: 335 - Release Date: 11/14/03 |
From: Doug M. <do...@cr...> - 2003-11-19 15:53:16
|
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.541 / Virus Database: 335 - Release Date: 11/14/03 |
From: jonathan e. <eis...@st...> - 2003-11-19 15:06:52
|
Greetings, I've looked through the archives and haven't found this subject, so Basic question: Can the dynapi libraries be loaded after the page has been loaded. Goal: All dynapi functionality on the page is secondary. So, I would like the page to load and render without having to wait for dynapi to come down the pipe. Yes, download times over modems is an issue. Ideally, I would like to be able to do the following: <script language="JavaScript" src="/library/dynapi3x/src/dynapi.js" type="text/JavaScript"></script> <script language="JavaScript"> var allLoaded = false; dynapi.onLoad(function () { dynapi.library.setPath('/library/dynapi3x/src/'); dynapi.library.include('dynapi.library'); dynapi.library.include('dynapi.api'); dynapi.library.include('dynapi.gui.LoadPanel'); dynapi.library.include('DragEvent'); allLoaded = true; }); </script> However, when it comes time to use it, I typically get javascript errors such as "LoadPanel has no properties", etc. And yes, I do make sure that dynapi is not used until the above function completes. I have tried various forms, including a setTimeout("a-load-the-libraries-function"), etc., but to no avail. The closest I have come is putting the include statements as the last script on the page, just before the </body> tag. However, this is not entirely reliable: sometimes the page will render before the includes are finished, sometimes the page will not render before the includes are finished. It appears that the libraries must be loaded before page load finishes. If this is so, then let me know. Else, if there are other fatal logic flaws, then send them on. Thank you for your time, jde |
From: Daniel T. <de...@ti...> - 2003-11-19 10:23:28
|
Hello Folks! I'm back! :) I have had to mutch to do latly, making a catalog for a friend for pressing, took to mutch time, i have became 25, was alot to do before that... and with dinner for 46 persons it became better than i expected. And i got a XBOX! (another reason for not developing) but i have not used that alot yet... but if time comes, i will. So how is everything going here? It havent been alot of activity on the lists what i have seen, and no cvs updates at all? I have restarted my project on building a homepage again... (www.tiru.se) and I am offcourse using DynAPI! Any new widgets/components comming out soon? I will try to finish the window widget soon, just some small things to fix before it can be released. Well well, hope to hear from all of you! Best regards Daniel Tiru |
From: Jesse V. <je...@6t...> - 2003-11-13 15:22:40
|
Interesting idea, but it sounds like I'll run into some trouble, if different browsers fire the events in different orders. Worth playing around with though, I'll take a look and let you know what happens. Thanks, Jesse Doug Melvin wrote: >Cludge alert! >Depending on the order in which the events are fired you _MAY_ >be able to set a switch in the mouseover of the iframe that you can check in >the >mouseout of the layer. > >So: iframe.onmouseover bIgnoreNextMouseOut=true >layer.onmouseout - if not bIgnoreNextMouseOut then {your code} >----- Original Message ----- >From: "Jesse Vitrone" <je...@6t...> >To: <dyn...@li...> >Sent: Thursday, November 13, 2003 8:53 AM >Subject: Re: [Dynapi-Help] onmouseout problem > > > > >>I'm still struggling with this. Does anyone have any suggestions on how >>to put an iframe on a layer, but not have the onmouseout for the layer >>get called when I mouse over the iframe (still on the layer). >> >>Thanks in advance, >> Jesse >> >>Jesse Vitrone wrote: >> >> >> >>>I'm having some trouble with an on mouse out listener. >>>* I have a layer, and on the layer, I've added an <iframe>. * I have >>>onmouseover and onmouseout listeners on this layer. >>> >>>When I mouse over the iframe that's on my layer, the onmouseout gets >>>triggered. Any idea why? Is this supposed to happen? Any way around >>>it? >>> >>>Thanks for the help, >>> Jesse >>> >>> >>> >>> >>>------------------------------------------------------- >>>This SF.Net email sponsored by: ApacheCon 2003, >>>16-19 November in Las Vegas. Learn firsthand the latest >>>developments in Apache, PHP, Perl, XML, Java, MySQL, >>>WebDAV, and more! http://www.apachecon.com/ >>>_______________________________________________ >>>Dynapi-Help mailing list >>>Dyn...@li... >>>https://lists.sourceforge.net/lists/listinfo/dynapi-help >>> >>> >> >> >>------------------------------------------------------- >>This SF.Net email sponsored by: ApacheCon 2003, >>16-19 November in Las Vegas. Learn firsthand the latest >>developments in Apache, PHP, Perl, XML, Java, MySQL, >>WebDAV, and more! http://www.apachecon.com/ >>_______________________________________________ >>Dynapi-Help mailing list >>Dyn...@li... >>https://lists.sourceforge.net/lists/listinfo/dynapi-help >> >> >> > > >--- >Outgoing mail is certified Virus Free. >Checked by AVG anti-virus system (http://www.grisoft.com). >Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/03 > > > >------------------------------------------------------- >This SF.Net email sponsored by: ApacheCon 2003, >16-19 November in Las Vegas. Learn firsthand the latest >developments in Apache, PHP, Perl, XML, Java, MySQL, >WebDAV, and more! http://www.apachecon.com/ >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Doug M. <do...@cr...> - 2003-11-13 15:17:44
|
Cludge alert! Depending on the order in which the events are fired you _MAY_ be able to set a switch in the mouseover of the iframe that you can check in the mouseout of the layer. So: iframe.onmouseover bIgnoreNextMouseOut=true layer.onmouseout - if not bIgnoreNextMouseOut then {your code} ----- Original Message ----- From: "Jesse Vitrone" <je...@6t...> To: <dyn...@li...> Sent: Thursday, November 13, 2003 8:53 AM Subject: Re: [Dynapi-Help] onmouseout problem > I'm still struggling with this. Does anyone have any suggestions on how > to put an iframe on a layer, but not have the onmouseout for the layer > get called when I mouse over the iframe (still on the layer). > > Thanks in advance, > Jesse > > Jesse Vitrone wrote: > > > I'm having some trouble with an on mouse out listener. > > * I have a layer, and on the layer, I've added an <iframe>. * I have > > onmouseover and onmouseout listeners on this layer. > > > > When I mouse over the iframe that's on my layer, the onmouseout gets > > triggered. Any idea why? Is this supposed to happen? Any way around > > it? > > > > Thanks for the help, > > Jesse > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: ApacheCon 2003, > > 16-19 November in Las Vegas. Learn firsthand the latest > > developments in Apache, PHP, Perl, XML, Java, MySQL, > > WebDAV, and more! http://www.apachecon.com/ > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/03 |
From: Jesse V. <je...@6t...> - 2003-11-13 13:50:53
|
I'm still struggling with this. Does anyone have any suggestions on how to put an iframe on a layer, but not have the onmouseout for the layer get called when I mouse over the iframe (still on the layer). Thanks in advance, Jesse Jesse Vitrone wrote: > I'm having some trouble with an on mouse out listener. > * I have a layer, and on the layer, I've added an <iframe>. * I have > onmouseover and onmouseout listeners on this layer. > > When I mouse over the iframe that's on my layer, the onmouseout gets > triggered. Any idea why? Is this supposed to happen? Any way around > it? > > Thanks for the help, > Jesse > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: <as...@we...> - 2003-11-12 17:43:30
|
I'm sorry, but how exactly I do this? Tanks, Asilva -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: quarta-feira, 12 de Novembro de 2003 17:20 To: dyn...@li... Subject: Re: [Dynapi-Help] HTMLMenu Help Hi, You can use the CSS hover property to set the text color when the mouse moves over the text. -- Raymond Irving --- Ant=F3nio_Silva <ant...@it...> wrote: > Hello every one, >=20 > I'm using the HTMLMenu component and I'm unable to > figure out how to set > a different text colour for an option when the mouse > is over that > option. I'm using options with text only. No images. >=20 > Thanks in advance, >=20 > ------------- > Ant=F3nio Silva >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the > latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/=20 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree ------------------------------------------------------- This SF.Net email sponsored by: ApacheCon 2003, 16-19 November in Las Vegas. Learn firsthand the latest developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, and more! http://www.apachecon.com/ _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Raymond I. <xw...@ya...> - 2003-11-12 17:27:31
|
This sound very good! Glad to hear that SODA is coming on just fine. Keep up the good work! -- Raymond Irving --- Andrew Gillett <an...@zo...> wrote: > Hi George, > > You are quite correct that an IOElement can > download arbitrary > data from a web server without needing to refresh > the page. > > I have implemented a java servlet that communicates > with aa IOElement > using the SODA protocol. It is mostly complete and > I've been wanting to > post details of it for some time, but I've never > been 100% satisfied > with it so I keep putting it off. I've also been > pushing at work to > connect Tomcat to one of our external web servers so > I can show off > a demo, but there is always some reason not to do it > right now. When > we complete our planned upgrade to redhat 9.... > > Anyway, I have the Calculator demo running quite > well and I have > the HelpManager displaying class and method > information but not yet > invoking those methods. I haven't yet looked at any > of the file > upload stuff. > > I'm using DynAPI and the servlet to build a web > application that > requires lots of server-side validation on a > field-by-field basis > and I'm hugely impressed with what we've achieved > using DynAPI. > It's unlike any other web application I've ever seen > (plugin-free). > > My servlet was originally written by manually > translating the JScript > server scripts. This was a messy business, because > scripting languages > javascript, vb, perl etc. are very easygoing with > assigning one data > type to another whereas java isn't like that at all. > I still have > a long list of improvements to make. > > If you're interested at what I've done so far, drop > me a line and > I'll forward what I've done so far to you. > > I've been thinking that perhaps I should establish a > separate sourceforge > project for this stuff or maybe some kind of dynapi > sub-project? > Because it is a full-blown servlet with a number of > classes, configuration > files and dependent jar files I don't think it > should be included in the > standard dynapi distribution. > > > regards, > Andrew > > > George Ardeleanu wrote: > > > > >Hello everyone , > > > >I recently became extremely interested in the > IOElement object as a means > >of comunicating from an html page to a server > without have to make another > >request for the same HTML page . > >am i correct that with the IOElement and/or the > SODA objects in DynAPI 3 > >you can have a web page get information from a > server without having the > >HTML page refresh itself everytime it makes a > request to the server ? > >if so , has any one implemented or started > implementing a Java class to > >communicate with DynAPI in this way . I would be > interested in helping > >create such a class if one doesnt exist or is not > complete . > > > >thanks !, > > > >george . > > > > > > > >------------------------------------------------------- > >This SF.Net email sponsored by: ApacheCon 2003, > >16-19 November in Las Vegas. Learn firsthand the > latest > >developments in Apache, PHP, Perl, XML, Java, > MySQL, > >WebDAV, and more! http://www.apachecon.com/ > >_______________________________________________ > >Dynapi-Help mailing list > >Dyn...@li... > >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the > latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree |
From: Raymond I. <xw...@ya...> - 2003-11-12 17:23:22
|
I believe the mouse-over event 'should' be triggered by design. -- Raymond Irving --- Jesse Vitrone <je...@6t...> wrote: > I'm having some trouble with an on mouse out > listener. > > * I have a layer, and on the layer, I've added an > <iframe>. > * I have onmouseover and onmouseout listeners on > this layer. > > When I mouse over the iframe that's on my layer, the > onmouseout gets > triggered. Any idea why? Is this supposed to > happen? Any way around it? > > Thanks for the help, > Jesse > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the > latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree |
From: Raymond I. <xw...@ya...> - 2003-11-12 17:21:38
|
Hi You can only call dynapi.document.getWidth/Hieht() after page load. -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Everyone, I have tried to get the browsers window > size when the window > opens, but I always get an error. However, if I wait > for the dynapi page to > load, and use a link to get the information it > works. Does anyone know how > to do this on page load? Or when the browser window > opens?? > > Thanks > Brian Hayes > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the > latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree |
From: Raymond I. <xw...@ya...> - 2003-11-12 17:20:10
|
Hi, You can use the CSS hover property to set the text color when the mouse moves over the text. -- Raymond Irving --- António_Silva <ant...@it...> wrote: > Hello every one, > > I'm using the HTMLMenu component and I'm unable to > figure out how to set > a different text colour for an option when the mouse > is over that > option. I'm using options with text only. No images. > > Thanks in advance, > > ------------- > António Silva > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the > latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree |
From: Andrew G. <an...@zo...> - 2003-11-12 00:22:02
|
Hi George, You are quite correct that an IOElement can download arbitrary data from a web server without needing to refresh the page. I have implemented a java servlet that communicates with aa IOElement using the SODA protocol. It is mostly complete and I've been wanting to post details of it for some time, but I've never been 100% satisfied with it so I keep putting it off. I've also been pushing at work to connect Tomcat to one of our external web servers so I can show off a demo, but there is always some reason not to do it right now. When we complete our planned upgrade to redhat 9.... Anyway, I have the Calculator demo running quite well and I have the HelpManager displaying class and method information but not yet invoking those methods. I haven't yet looked at any of the file upload stuff. I'm using DynAPI and the servlet to build a web application that requires lots of server-side validation on a field-by-field basis and I'm hugely impressed with what we've achieved using DynAPI. It's unlike any other web application I've ever seen (plugin-free). My servlet was originally written by manually translating the JScript server scripts. This was a messy business, because scripting languages javascript, vb, perl etc. are very easygoing with assigning one data type to another whereas java isn't like that at all. I still have a long list of improvements to make. If you're interested at what I've done so far, drop me a line and I'll forward what I've done so far to you. I've been thinking that perhaps I should establish a separate sourceforge project for this stuff or maybe some kind of dynapi sub-project? Because it is a full-blown servlet with a number of classes, configuration files and dependent jar files I don't think it should be included in the standard dynapi distribution. regards, Andrew George Ardeleanu wrote: > >Hello everyone , > >I recently became extremely interested in the IOElement object as a means >of comunicating from an html page to a server without have to make another >request for the same HTML page . >am i correct that with the IOElement and/or the SODA objects in DynAPI 3 >you can have a web page get information from a server without having the >HTML page refresh itself everytime it makes a request to the server ? >if so , has any one implemented or started implementing a Java class to >communicate with DynAPI in this way . I would be interested in helping >create such a class if one doesnt exist or is not complete . > >thanks !, > >george . > > > >------------------------------------------------------- >This SF.Net email sponsored by: ApacheCon 2003, >16-19 November in Las Vegas. Learn firsthand the latest >developments in Apache, PHP, Perl, XML, Java, MySQL, >WebDAV, and more! http://www.apachecon.com/ >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > |
From: George A. <GAr...@co...> - 2003-11-11 23:33:08
|
Hello everyone , I recently became extremely interested in the IOElement object as a means of comunicating from an html page to a server without have to make another request for the same HTML page . am i correct that with the IOElement and/or the SODA objects in DynAPI 3 you can have a web page get information from a server without having the HTML page refresh itself everytime it makes a request to the server ? if so , has any one implemented or started implementing a Java class to communicate with DynAPI in this way . I would be interested in helping create such a class if one doesnt exist or is not complete . thanks !, george . |
From: ToddNY <vze...@ve...> - 2003-11-11 04:33:26
|
Flash has this server communication stuff built in now, no? (that would be invisible). ----- Original Message ----- From: "Bruce Tennant" <blu...@ya...> To: <dyn...@li...> Sent: Wednesday, October 29, 2003 2:06 PM Subject: Re: [Dynapi-Help] How to load/refresh w/out seeing it in the browser busy icon > Yeah. Exactly. It gives it an appearance as if it is all happening on > thier machine rather than over the internet. > > Next Sunday, go to one of the nfl.com game stats pages and watch. It > is actually quite nice the way they do it. > > --- Raymond Irving <xw...@ya...> wrote: > > > > Ok so the idea is to not let the user know that the > > page is being updated? They should just see the > > change? > > > > -- > > Raymond Irving > > > > --- Bruce Tennant <blu...@ya...> wrote: > > > I get the same hidden behavior in both IE and > > > Mozilla. I can't ever > > > recall being asked to install a java applet. > > > > > > I was just curious. They do have a ton java script > > > on those pages, > > > some of it is compress (white space removed). > > > > > > > > > --- Doug Melvin <do...@cr...> wrote: > > > > danged email went out blank again.. grrr.. > > > > > > > > Anyways, I believe that the asker wanted to _hide_ > > > the client-server > > > > comm > > > > from the user. > > > > > > > > nfl.com's behavior was submitted as an example of > > > the preferred > > > > behavior. > > > > > > > > I have no advice in this area. All I can recall is > > > having used frames > > > > in the > > > > past for this.. > > > > > > > > Also keep in mind the possibility (or even > > > likelihood) that nfl.com > > > > uses > > > > java or active-x for communications. > > > > Or even could use the built in XML support in IE. > > > > > > > > > > > > ----- Original Message ----- > > > > From: "Raymond Irving" <xw...@ya...> > > > > To: <dyn...@li...> > > > > Sent: Wednesday, October 29, 2003 9:21 AM > > > > Subject: Re: [Dynapi-Help] How to load/refresh > > > w/out seeing it in the > > > > browser busy icon > > > > > > > > > > > > > > > > > > Ok. I don't know why it don't show the busy > > > cursor. I > > > > > for one don't like it when the busy icon moves > > > and the > > > > > busy cursor is shown. > > > > > > > > > > What you can do is display a small layer showing > > > that > > > > > the system is fetching data from the server. > > > That way > > > > > the viewers will now that data is been fetched > > > from > > > > > the server. You could display a floating layer > > > to the > > > > > bottom-right of the browser. > > > > > > > > > > -- > > > > > Raymond Irving > > > > > > > > > > --- Bruce Tennant <blu...@ya...> wrote: > > > > > > My web site currently uses an IOelement to > > > retrieve > > > > > > updates from the > > > > > > server. This works well enough, but I was > > > wondering > > > > > > if it is possible > > > > > > w/DynAPI to make it invisible to the user? > > > > > > > > > > > > The example I have is nfl.com. If you go to > > > nfl.com > > > > > > and then to a game > > > > > > stats page, you'll see the game data and > > > league > > > > > > scores update > > > > > > frequently but never see the busy window move > > > (the > > > > > > icon in upper right > > > > > > corner). You can't tell that the page is > > > fetching > > > > > > more data from the > > > > > > server. > > > > > > > > > > > > Any ideas? Is this possible w/DynAPI? > > > > > > > > > > > > > > > > > > ===== > > > > > > www.bluewolverine.com > > > > > > > > > > > > __________________________________ > > > > > > Do you Yahoo!? > > > > > > Exclusive Video Premiere - Britney Spears > > > > > > http://launch.yahoo.com/promos/britneyspears/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > This SF.net email is sponsored by: The SF.net > > > > > > Donation Program. > > > > > > Do you like what SourceForge.net is doing for > > > the > > > > > > Open > > > > > > Source Community? Make a contribution, and > > > help us > > > > > > add new > > > > > > features and functionality. Click here: > > > > > > http://sourceforge.net/donate/ > > > > > > > > > _______________________________________________ > > > > > > Dynapi-Help mailing list > > > > > > Dyn...@li... > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > > > > > > __________________________________ > > > > > Do you Yahoo!? > > > > > Exclusive Video Premiere - Britney Spears > > > > > http://launch.yahoo.com/promos/britneyspears/ > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > This SF.net email is sponsored by: SF.net > > > Giveback Program. > > > > > Does SourceForge.net help you be more > > > productive? Does it > > > > > help you create better code? SHARE THE LOVE, > > > and help us help > > > > > YOU! Click Here: http://sourceforge.net/donate/ > > > > > _______________________________________________ > > > > > Dynapi-Help mailing list > > > > > Dyn...@li... > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > > > > > > > > --- > > > > Outgoing mail is certified Virus Free. > > > > Checked by AVG anti-virus system > > > (http://www.grisoft.com). > > > > Version: 6.0.530 / Virus Database: 325 - Release > > > Date: 10/22/03 > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: SF.net Giveback > > > Program. > > > > Does SourceForge.net help you be more productive? > > > Does it > > > > help you create better code? SHARE THE LOVE, and > > > help us help > > > > YOU! Click Here: http://sourceforge.net/donate/ > > > > _______________________________________________ > > > > Dynapi-Help mailing list > > > > Dyn...@li... > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > ===== > > > www.bluewolverine.com > > > > > > __________________________________ > > > Do you Yahoo!? > > > Exclusive Video Premiere - Britney Spears > > > http://launch.yahoo.com/promos/britneyspears/ > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: SF.net Giveback > > > Program. > > > Does SourceForge.net help you be more productive? > > > Does it > > > help you create better code? SHARE THE LOVE, and > > > help us help > > > YOU! Click Here: http://sourceforge.net/donate/ > > > _______________________________________________ > > > === message truncated === > > > ===== > www.bluewolverine.com > > __________________________________ > Do you Yahoo!? > Exclusive Video Premiere - Britney Spears > http://launch.yahoo.com/promos/britneyspears/ > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Jesse V. <je...@6t...> - 2003-11-10 18:51:07
|
I'm having some trouble with an on mouse out listener. * I have a layer, and on the layer, I've added an <iframe>. * I have onmouseover and onmouseout listeners on this layer. When I mouse over the iframe that's on my layer, the onmouseout gets triggered. Any idea why? Is this supposed to happen? Any way around it? Thanks for the help, Jesse |
From: Brian H. <bg...@ke...> - 2003-11-08 17:00:47
|
Everyone, I have tried to get the browsers window size when the window opens, but I always get an error. However, if I wait for the dynapi page to load, and use a link to get the information it works. Does anyone know how to do this on page load? Or when the browser window opens?? Thanks Brian Hayes |
From: Martin W. <mwe...@pl...> - 2003-11-07 10:48:50
|
On Thursday 06 November 2003 17:18, Raymond Irving wrote: > Yes we would love to hear about your findings. =46rom what I learned about the relation between safari and konqueror fr= om=20 public sources I expected them to be more or less the same. Apple also to= ok=20 the JS part from the kde project, but now it seems to me that they have d= one=20 many modfications. As apple sends back their work to the kde people there= =20 should be a convergence between these two. Nobody actually claimed but I=20 thought first outcomes of would be implemented in konqueror in 3.Q. this = year.=20 I still must get kde3.2 to check. With my version 3.0.3: if I leave the the user agent to the default strin= g=20 (Mozilla/5.0 (compatible; Konqueror/3; Linux) almost none of the examples= =20 work. Changing ua to Mozilla M18 ("Mozilla/5.0 (Windows; U; WinNT4.0; en-= US;=20 m18) Gecko/2001010") gives he same effect.=20 Best results I do get if I set ua to IE5.5 Win2000 ("Mozilla/4.0 (compati= ble;=20 MSIE 5.5;Windows NT 5.0)"), the last thing I expected ... The 'basic' and= =20 most important examples work (and - besides - my web-mapping projects)= =2E Ok, what I did - bad, bad - I fumbled with dynapi.js : [... ] =20 this.safari =3D ua.indexOf("safari")>-1; // always check for safari & o= pera=20 // may be next line was me or it was in one of the snapshots this.konqueror =3D ua.indexOf("konqueror")>-1; this.opera =3D ua.indexOf("opera")>-1; // before ns or ie [...] }else if (this.safari) { // safari part untouched this.ns6 =3D (this.v>=3D5); // ns6 compatible correct? this.b =3D "Safari"; }else if (this.konqueror) { // my quirk this.ie =3D this.ie6 =3D true; this.v =3D 6; this.b =3D "MSIE"; }=20 [...] this.win32 =3D ((ua.indexOf("win")>-1) || this.konqueror); [...] Sure the kde people like to kill me for that Maybe it would be enough to : [ ... ] }else if (this.safari || this.konqueror)) { =20 this.ns6 =3D (this.v>=3D5); // ns6 compatible correct? (this.safari)?this.b =3D "Safari":this.b =3D "Konqueror";=20 [ ... ] Cheers, Martin |
From: Jesse V. <je...@6t...> - 2003-11-06 16:22:47
|
It's up to you, I just didn't want to duplicate the effort of looking into it if you were already going to. Jes Raymond Irving wrote: >I guess we both can > >-- >Raymond Irving > >--- Jesse Vitrone <je...@6t...> wrote: > > >>Raymond, >> >> >> >>>This is needed inside the pages that the load >>> >>> >>panel >> >> >>>will load. This needs to be fixed. >>> >>> >>Does this mean that you're going to look into it? >>Or do you want me to? >> >> >>Jesse >> >> >>Raymond Irving wrote: >> >> >> >>>I see what the problem is. Google and the others >>> >>> >>does >> >> >>>not include the script: >>> >>><script language="Javascript"> >>>if (typeof(parent.dynapi)=='object') >>>parent.LoadPanel.notify(this); >>>else if (typeof(dynapi)=='object') >>>LoadPanel.notify(this); >>></script> >>> >>>This is needed inside the pages that the load panel >>>will load. This needs to be fixed. >>> >>>-- >>>Raymond Irving >>> >>> >>>--- Jesse Vitrone <je...@6t...> >>> >>> >>wrote: >> >> >>> >>> >>> >>> >>>>Thanks for the suggestion Doug, but I tried that, >>>>with and without the >>>>http and I can't get it to work. >>>> >>>>Here's slightly modified version of the load panel >>>>example I changed to >>>>of the links on the left to try: >>>> http://www.google.com >>>> ane >>>> www.google.com >>>> >>>> >>>> >>>> >>>> >>>> >>http://www.6thgearsoftware.com/dynapi3x/examples/dynapi.gui.loadpanel.html >> >> >>> >>> >>> >>> >>>>Any ideas why this isn't working? Am I using it >>>>wrong? >>>> >>>>Thanks, >>>> Jesse >>>> >>>>Doug Melvin wrote: >>>> >>>> >>>> >>>> >>>> >>>>>One of the purposes of the loadpanel is to load >>>>> >>>>> >>>>> >>>>> >>>>external pages. >>>> >>>> >>>> >>>> >>>>>Simply set the url of the page you want to load. >>>>> >>>>>If it doen's work, try the url with and without >>>>> >>>>> >>the >> >> >>>>> >>>>> >>>>> >>>>> >>>>"http://" >>>> >>>> >>>> >>>> >>>>>----- Original Message ----- >>>>>From: "Jesse Vitrone" <je...@6t...> >>>>>To: <dyn...@li...> >>>>>Sent: Wednesday, November 05, 2003 9:49 AM >>>>>Subject: [Dynapi-Help] Load Panel with http:// >>>>> >>>>> >>url >> >> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>>Is there a way to set the url for a Load Panel >>>>>> >>>>>> >>to >> >> >>>>>> >>>>>> >>>>>> >>>>>> >>>>a remote url like >>>> >>>> >>>> >>>> >>>>>>http://google.com ? >>>>>> >>>>>>If not, is there a good way to make a layer with >>>>>> >>>>>> >>>>>> >>>>>> >>>>an external page? >>>> >>>> >>>> >>>> >>>>>>I tried to make one my having a layer with an >>>>>> >>>>>> >>>>>> >>>>>> >>>>iframe on it, and that >>>> >>>> >>>> >>>> >>>>>>works OK, but has some problems, if there's no >>>>>> >>>>>> >>>>>> >>>>>> >>>>other good way to do >>>> >>>> >>>> >>>> >>>>>>this, maybe I'll post the problems that I'm >>>>>> >>>>>> >>having >> >> >>>>>> >>>>>> >>>>>> >>>>>> >>>>and see if someone >>>> >>>> >>>> >>>> >>>>>>has some good answers. >>>>>> >>>>>>Thanks in advance, >>>>>> Jesse >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>------------------------------------------------------- >>>> >>>> >>>>> >>>>> >>>>> >>>>> >>>>>>This SF.net email is sponsored by: SF.net >>>>>> >>>>>> >>Giveback >> >> >>>>>> >>>>>> >>>>>> >>>>>> >>>>Program. >>>> >>>> >>>> >>>> >>>>>>Does SourceForge.net help you be more >>>>>> >>>>>> >>productive? >> >> >>>>>> >>>>>> >>>>>> >>>>>> >>>>Does it >>>> >>>> >>>> >>>> >>>>>>help you create better code? SHARE THE LOVE, >>>>>> >>>>>> >>and >> >> >>>>>> >>>>>> >>>>>> >>>>>> >>>>help us help >>>> >>>> >>>> >>>> >>>>>>YOU! Click Here: http://sourceforge.net/donate/ >>>>>>_______________________________________________ >>>>>>Dynapi-Help mailing list >>>>>>Dyn...@li... >>>>>> >>>>>> >>>>>> >>>>>> >>>>https://lists.sourceforge.net/lists/listinfo/dynapi-help >>>> >>>> >>>>> >>>>> >>>>> >>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>--- >>>>>Outgoing mail is certified Virus Free. >>>>>Checked by AVG anti-virus system >>>>> >>>>> >>>>> >>>>> >>>>(http://www.grisoft.com). >>>> >>>> >>>> >>>> >>>>>Version: 6.0.536 / Virus Database: 331 - Release >>>>> >>>>> >>>>> >>>>> >>>>Date: 11/3/03 >>>> >>>> >>>> >>>> >>>>> >>>>> >>>>> >>>>> >>>------------------------------------------------------- >>> >>> >>>> >>>> >>>> >>>> >>>>>This SF.net email is sponsored by: SF.net >>>>> >>>>> >>Giveback >> >> >>>>> >>>>> >>>>> >>>>> >>>>Program. >>>> >>>> >>>> >>>> >>>>>Does SourceForge.net help you be more productive? >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >=== message truncated === > > >__________________________________ >Do you Yahoo!? >Protect your identity with Yahoo! Mail AddressGuard >http://antispam.yahoo.com/whatsnewfree > > >------------------------------------------------------- >This SF.net email is sponsored by: SF.net Giveback Program. >Does SourceForge.net help you be more productive? Does it >help you create better code? SHARE THE LOVE, and help us help >YOU! Click Here: http://sourceforge.net/donate/ >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Raymond I. <xw...@ya...> - 2003-11-06 16:18:52
|
Yes we would love to hear about your findings. -- Raymond Irving --- Martin Weinelt <mwe...@pl...> wrote: > Hi, > > I am an old fan, thanks alot for this fine project. > I am using DynAPI for web.mapping solutions since > 2002. Expamles can be seen > at http://www.umweltdaten.landsh.de/atlas/ using > DynAPI 2.6 for a zoom-box, a > rolodex-like themes menu, a measure tool and the > content change of maps > display , legend , etc. > > An example for DynAPI 3x can be seen at > http://mapserver.pangaea.de/. The > zoombox was much easier to do now with the > 'setAnchor'-method. I also see > that the cross-browser capabilities have very much > improved. I must support > browsers such as Konqueror and Safari. > > Safari works very nice. It got problems with the > query result window, but > these are not dynapi-related. (you query stations > and profiles east off > Greenland. > > As for Konqueror: I am testing with version 3.0.3 > and had best results when I > forced it to claim it's IE5.5 on Win (you can set UA > with Konqueror). > > Should I do anything about dynapi.ua to reflect my > findings? > > Thanks, Martin > > -- > --- Martin Weinelt > --- kk+w - digital cartography > --- Kiel, Germany > --- Tel: +49.431.5791165 > --- http://www.planiglobe.com > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > Does SourceForge.net help you be more productive? > Does it > help you create better code? SHARE THE LOVE, and > help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree |
From: Raymond I. <xw...@ya...> - 2003-11-06 16:15:45
|
I guess we both can -- Raymond Irving --- Jesse Vitrone <je...@6t...> wrote: > Raymond, > > > This is needed inside the pages that the load > panel > > will load. This needs to be fixed. > > Does this mean that you're going to look into it? > Or do you want me to? > > > Jesse > > > Raymond Irving wrote: > > >I see what the problem is. Google and the others > does > >not include the script: > > > ><script language="Javascript"> > >if (typeof(parent.dynapi)=='object') > >parent.LoadPanel.notify(this); > >else if (typeof(dynapi)=='object') > >LoadPanel.notify(this); > ></script> > > > >This is needed inside the pages that the load panel > >will load. This needs to be fixed. > > > >-- > >Raymond Irving > > > > > >--- Jesse Vitrone <je...@6t...> > wrote: > > > > > >>Thanks for the suggestion Doug, but I tried that, > >>with and without the > >>http and I can't get it to work. > >> > >>Here's slightly modified version of the load panel > >>example I changed to > >>of the links on the left to try: > >> http://www.google.com > >> ane > >> www.google.com > >> > >> > >> > >> > >http://www.6thgearsoftware.com/dynapi3x/examples/dynapi.gui.loadpanel.html > > > > > >>Any ideas why this isn't working? Am I using it > >>wrong? > >> > >>Thanks, > >> Jesse > >> > >>Doug Melvin wrote: > >> > >> > >> > >>>One of the purposes of the loadpanel is to load > >>> > >>> > >>external pages. > >> > >> > >>>Simply set the url of the page you want to load. > >>> > >>>If it doen's work, try the url with and without > the > >>> > >>> > >>"http://" > >> > >> > >>>----- Original Message ----- > >>>From: "Jesse Vitrone" <je...@6t...> > >>>To: <dyn...@li...> > >>>Sent: Wednesday, November 05, 2003 9:49 AM > >>>Subject: [Dynapi-Help] Load Panel with http:// > url > >>> > >>> > >>> > >>> > >>> > >>> > >>>>Is there a way to set the url for a Load Panel > to > >>>> > >>>> > >>a remote url like > >> > >> > >>>>http://google.com ? > >>>> > >>>>If not, is there a good way to make a layer with > >>>> > >>>> > >>an external page? > >> > >> > >>>>I tried to make one my having a layer with an > >>>> > >>>> > >>iframe on it, and that > >> > >> > >>>>works OK, but has some problems, if there's no > >>>> > >>>> > >>other good way to do > >> > >> > >>>>this, maybe I'll post the problems that I'm > having > >>>> > >>>> > >>and see if someone > >> > >> > >>>>has some good answers. > >>>> > >>>>Thanks in advance, > >>>> Jesse > >>>> > >>>> > >>>> > >>>> > >>>> > >>>------------------------------------------------------- > >>> > >>> > >>>>This SF.net email is sponsored by: SF.net > Giveback > >>>> > >>>> > >>Program. > >> > >> > >>>>Does SourceForge.net help you be more > productive? > >>>> > >>>> > >>Does it > >> > >> > >>>>help you create better code? SHARE THE LOVE, > and > >>>> > >>>> > >>help us help > >> > >> > >>>>YOU! Click Here: http://sourceforge.net/donate/ > >>>>_______________________________________________ > >>>>Dynapi-Help mailing list > >>>>Dyn...@li... > >>>> > >>>> > >>>https://lists.sourceforge.net/lists/listinfo/dynapi-help > >>> > >>> > >>>> > >>>> > >>>> > >>>> > >>>--- > >>>Outgoing mail is certified Virus Free. > >>>Checked by AVG anti-virus system > >>> > >>> > >>(http://www.grisoft.com). > >> > >> > >>>Version: 6.0.536 / Virus Database: 331 - Release > >>> > >>> > >>Date: 11/3/03 > >> > >> > >>> > >>> > >>------------------------------------------------------- > >> > >> > >>>This SF.net email is sponsored by: SF.net > Giveback > >>> > >>> > >>Program. > >> > >> > >>>Does SourceForge.net help you be more productive? > > >>> > >>> > === message truncated === __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree |
From: Jesse V. <je...@6t...> - 2003-11-06 13:27:30
|
Raymond, > This is needed inside the pages that the load panel > will load. This needs to be fixed. Does this mean that you're going to look into it? Or do you want me to? Jesse Raymond Irving wrote: >I see what the problem is. Google and the others does >not include the script: > ><script language="Javascript"> >if (typeof(parent.dynapi)=='object') >parent.LoadPanel.notify(this); >else if (typeof(dynapi)=='object') >LoadPanel.notify(this); ></script> > >This is needed inside the pages that the load panel >will load. This needs to be fixed. > >-- >Raymond Irving > > >--- Jesse Vitrone <je...@6t...> wrote: > > >>Thanks for the suggestion Doug, but I tried that, >>with and without the >>http and I can't get it to work. >> >>Here's slightly modified version of the load panel >>example I changed to >>of the links on the left to try: >> http://www.google.com >> ane >> www.google.com >> >> >> >> >http://www.6thgearsoftware.com/dynapi3x/examples/dynapi.gui.loadpanel.html > > >>Any ideas why this isn't working? Am I using it >>wrong? >> >>Thanks, >> Jesse >> >>Doug Melvin wrote: >> >> >> >>>One of the purposes of the loadpanel is to load >>> >>> >>external pages. >> >> >>>Simply set the url of the page you want to load. >>> >>>If it doen's work, try the url with and without the >>> >>> >>"http://" >> >> >>>----- Original Message ----- >>>From: "Jesse Vitrone" <je...@6t...> >>>To: <dyn...@li...> >>>Sent: Wednesday, November 05, 2003 9:49 AM >>>Subject: [Dynapi-Help] Load Panel with http:// url >>> >>> >>> >>> >>> >>> >>>>Is there a way to set the url for a Load Panel to >>>> >>>> >>a remote url like >> >> >>>>http://google.com ? >>>> >>>>If not, is there a good way to make a layer with >>>> >>>> >>an external page? >> >> >>>>I tried to make one my having a layer with an >>>> >>>> >>iframe on it, and that >> >> >>>>works OK, but has some problems, if there's no >>>> >>>> >>other good way to do >> >> >>>>this, maybe I'll post the problems that I'm having >>>> >>>> >>and see if someone >> >> >>>>has some good answers. >>>> >>>>Thanks in advance, >>>> Jesse >>>> >>>> >>>> >>>> >>>> >>>------------------------------------------------------- >>> >>> >>>>This SF.net email is sponsored by: SF.net Giveback >>>> >>>> >>Program. >> >> >>>>Does SourceForge.net help you be more productive? >>>> >>>> >>Does it >> >> >>>>help you create better code? SHARE THE LOVE, and >>>> >>>> >>help us help >> >> >>>>YOU! Click Here: http://sourceforge.net/donate/ >>>>_______________________________________________ >>>>Dynapi-Help mailing list >>>>Dyn...@li... >>>> >>>> >>>https://lists.sourceforge.net/lists/listinfo/dynapi-help >>> >>> >>>> >>>> >>>> >>>> >>>--- >>>Outgoing mail is certified Virus Free. >>>Checked by AVG anti-virus system >>> >>> >>(http://www.grisoft.com). >> >> >>>Version: 6.0.536 / Virus Database: 331 - Release >>> >>> >>Date: 11/3/03 >> >> >>> >>> >>------------------------------------------------------- >> >> >>>This SF.net email is sponsored by: SF.net Giveback >>> >>> >>Program. >> >> >>>Does SourceForge.net help you be more productive? >>> >>> >>Does it >> >> >>>help you create better code? SHARE THE LOVE, and >>> >>> >>help us help >> >> >>>YOU! Click Here: http://sourceforge.net/donate/ >>>_______________________________________________ >>>Dynapi-Help mailing list >>>Dyn...@li... >>> >>> >>https://lists.sourceforge.net/lists/listinfo/dynapi-help >> >> >>> >>> >>> >>> > > >__________________________________ >Do you Yahoo!? >Protect your identity with Yahoo! Mail AddressGuard >http://antispam.yahoo.com/whatsnewfree > > >------------------------------------------------------- >This SF.net email is sponsored by: SF.net Giveback Program. >Does SourceForge.net help you be more productive? Does it >help you create better code? SHARE THE LOVE, and help us help >YOU! Click Here: http://sourceforge.net/donate/ >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: <ant...@it...> - 2003-11-06 12:54:54
|
Hello every one, I'm using the HTMLMenu component and I'm unable to figure out how to set a different text colour for an option when the mouse is over that option. I'm using options with text only. No images. Thanks in advance, ------------- Ant=F3nio Silva |