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: Doug M. <do...@cr...> - 2003-10-17 20:06:47
|
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.528 / Virus Database: 324 - Release Date: 10/16/03 |
From: Doug M. <do...@cr...> - 2003-10-17 20:04:53
|
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.528 / Virus Database: 324 - Release Date: 10/16/03 |
From: Doug M. <do...@cr...> - 2003-10-17 20:04:21
|
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.528 / Virus Database: 324 - Release Date: 10/16/03 |
From: Raymond I. <xw...@ya...> - 2003-10-17 18:56:50
|
Well if this format "2001/05/15 09:30:45" works then I think we should use it. I don't remember why I used mm/dd/yyyy. I thought I had use yyy/mm/dd before but had to resort to mm/dd/yyyy. Can't remember why. More testing might have to be done with yyyy/mm/dd and javascript and other server-side languages -- Raymond Irving --- Leif W <war...@us...> wrote: > Hi, > > I would break up the mm/dd/yyyy hh:nn:ss into the > Date( yy, mm, dd, hh, nn, > ss ) format, but I am not sure about the y2k > compatibility of the year > format where it only uses 2 digits, not all four. > But in the example it > also shows the other date format Date("December 17, > 1995 03:24:00") with the > 4-digit date format which is ok. So I don't know if > it's just a > documentation shortcoming, or something in the > browser. It'll be easy > enough to create a date test page with various > formats passed to the > constructor. > > (some time passes) > > http://dynapi.kicks-ass.net/DynAPI_CVSROOT/test/date_format/date_format.html > > These four formats I tried all work in IE 6, Opera > 7.11, Netscape 4.79, > Mozilla 1.5, and Mozilla Firebird 0.6.1. Try > testing these and other > formats in these and other browsers. > > 05/15/2001 09:30:45 > 2001/05/15 09:30:45 > 2001,04,15,09,30,45 > May 15, 2001 09:30:45 > > Personally I prefer the second format, putting > everything in a more logical > order, greatest to least "yyyy/mm/dd hh:nn:ss". The > third format is also > logical, but might require further processing (note > the month is 0-11, not > 1-12). The fourth format is probably the least > desireable, converting a > number to a month string. But maybe we could just > write code to handle all > four formats, as JavaScript does? That might make > it more flexible for the > coders. Or too confusing? What do you think? > > Leif > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: <dyn...@li...> > Sent: Friday, October 17, 2003 10:30 AM > Subject: Re: Fw: [Dynapi-Dev] IOElement SODA date > format > > > > > > Thanks Leif. > > > > I think the date format "mm/dd/yy hh:nn:ss" works > in > > ns4 and others or should we break it up to use the > > "Date(95,11,17,3,24,0)" format? > > > > -- > > Raymond Irving > > > > --- Leif W <war...@us...> wrote: > > > Here's a message you may hve missed. > > > > > > ----- Original Message ----- > > > From: "Leif W" <war...@us...> > > > To: "DynAPI-Dev" > <dyn...@li...> > > > Sent: Thursday, October 16, 2003 6:56 PM > > > Subject: [Dynapi-Dev] IOElement SODA date format > > > > > > > > > > Hi, > > > > > > > > In the docs (quickref.soda) and the code, the > date > > > format I've seen > > > > mentioned or handled is "mm/dd/yyyy hh:nn:ss" > but > > > I've just come to a > > > point > > > > in the code in ioelmsrv.soda in ws__SODA2Var > under > > > 'else if ( tagType == > > > > "d" )', where in the JScript version of the > ASP, > > > it passes this format > > > > string to the JScript Date() object as a > > > constructor argument. > > > > > > > > But looking through the most recent (ok maybe > this > > > is outdated) JS > > > reference > > > > manual I could find (Netscape's Core Reference > JS > > > 1.5), I only found these > > > > date formats, not the one being used. Am I > > > missing something? > > > > > > > > today = new Date() > > > > birthday = new Date("December 17, 1995 > 03:24:00") > > > > birthday = new Date(95,11,17) > > > > birthday = new Date(95,11,17,3,24,0) > > > > > > > > Leif > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: SF.net > Giveback > > > Program. > > > > SourceForge.net hosts over 70,000 Open Source > > > Projects. > > > > See the people who have HELPED US provide > better > > > services: > > > > Click here: > http://sourceforge.net/supporters.php > > > > > _______________________________________________ > > > > Dynapi-Dev mailing list > > > > Dyn...@li... > > > > > > > > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > The New Yahoo! Shopping - with improved product > search > > http://shopping.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email sponsored by: Enterprise Linux > Forum Conference & Expo > > The Event For Linux Datacenter Solutions & > Strategies in The Enterprise > > Linux in the Boardroom; in the Front Office; & in > the Server Room > > http://www.enterpriselinuxforum.com > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > ------------------------------------------------------- > This SF.net email sponsored by: Enterprise Linux > Forum Conference & Expo > The Event For Linux Datacenter Solutions & > Strategies in The Enterprise > Linux in the Boardroom; in the Front Office; & in > the Server Room > http://www.enterpriselinuxforum.com > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-17 18:51:31
|
Hello Everyone, Ever wanted to search files without using server-side coding? Well now you can with the new FileReader Class library. Please see attached zip file. It contains the updated FileReader and the demo.filesearch.html demo file Have fun!!! Any comments? -- Raymond Irving __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Kevin <ke...@ke...> - 2003-10-17 18:48:28
|
"Leif W" <war...@us...> wrote: > I'm nearing the end of the initial translation pass through the > ioelmsrv.soda. Next I'll have to go through a lot of debugging to see if > the my first attempt to create PHP code was successful. As you've noticed > before, there's probably a lot of syntax or logic errors. When I get it > working, I'll release it without the upload code, and without the specific > language switching code. It'll just work with PHP 4.1.0 or greater > (assuming 4.3.x). Next I'll work on the version specific stuff, introducing > mechanisms to better handle the pre and post 4.1.0 differences. Then I'll > probably put in the file upload stuff. > > Leif Thanks Leif. Look forward to the first cut. Perhaps if you post it to the list I may be able to help with some debug. - Kevin > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Leif W <war...@us...> - 2003-10-17 16:31:34
|
Hi, I would break up the mm/dd/yyyy hh:nn:ss into the Date( yy, mm, dd, hh, nn, ss ) format, but I am not sure about the y2k compatibility of the year format where it only uses 2 digits, not all four. But in the example it also shows the other date format Date("December 17, 1995 03:24:00") with the 4-digit date format which is ok. So I don't know if it's just a documentation shortcoming, or something in the browser. It'll be easy enough to create a date test page with various formats passed to the constructor. (some time passes) http://dynapi.kicks-ass.net/DynAPI_CVSROOT/test/date_format/date_format.html These four formats I tried all work in IE 6, Opera 7.11, Netscape 4.79, Mozilla 1.5, and Mozilla Firebird 0.6.1. Try testing these and other formats in these and other browsers. 05/15/2001 09:30:45 2001/05/15 09:30:45 2001,04,15,09,30,45 May 15, 2001 09:30:45 Personally I prefer the second format, putting everything in a more logical order, greatest to least "yyyy/mm/dd hh:nn:ss". The third format is also logical, but might require further processing (note the month is 0-11, not 1-12). The fourth format is probably the least desireable, converting a number to a month string. But maybe we could just write code to handle all four formats, as JavaScript does? That might make it more flexible for the coders. Or too confusing? What do you think? Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Friday, October 17, 2003 10:30 AM Subject: Re: Fw: [Dynapi-Dev] IOElement SODA date format > > Thanks Leif. > > I think the date format "mm/dd/yy hh:nn:ss" works in > ns4 and others or should we break it up to use the > "Date(95,11,17,3,24,0)" format? > > -- > Raymond Irving > > --- Leif W <war...@us...> wrote: > > Here's a message you may hve missed. > > > > ----- Original Message ----- > > From: "Leif W" <war...@us...> > > To: "DynAPI-Dev" <dyn...@li...> > > Sent: Thursday, October 16, 2003 6:56 PM > > Subject: [Dynapi-Dev] IOElement SODA date format > > > > > > > Hi, > > > > > > In the docs (quickref.soda) and the code, the date > > format I've seen > > > mentioned or handled is "mm/dd/yyyy hh:nn:ss" but > > I've just come to a > > point > > > in the code in ioelmsrv.soda in ws__SODA2Var under > > 'else if ( tagType == > > > "d" )', where in the JScript version of the ASP, > > it passes this format > > > string to the JScript Date() object as a > > constructor argument. > > > > > > But looking through the most recent (ok maybe this > > is outdated) JS > > reference > > > manual I could find (Netscape's Core Reference JS > > 1.5), I only found these > > > date formats, not the one being used. Am I > > missing something? > > > > > > today = new Date() > > > birthday = new Date("December 17, 1995 03:24:00") > > > birthday = new Date(95,11,17) > > > birthday = new Date(95,11,17,3,24,0) > > > > > > Leif > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: SF.net Giveback > > Program. > > > SourceForge.net hosts over 70,000 Open Source > > Projects. > > > See the people who have HELPED US provide better > > services: > > > Click here: http://sourceforge.net/supporters.php > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > > > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email sponsored by: Enterprise Linux Forum Conference & Expo > The Event For Linux Datacenter Solutions & Strategies in The Enterprise > Linux in the Boardroom; in the Front Office; & in the Server Room > http://www.enterpriselinuxforum.com > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Raymond I. <xw...@ya...> - 2003-10-17 14:30:14
|
Thanks Leif. I think the date format "mm/dd/yy hh:nn:ss" works in ns4 and others or should we break it up to use the "Date(95,11,17,3,24,0)" format? -- Raymond Irving --- Leif W <war...@us...> wrote: > Here's a message you may hve missed. > > ----- Original Message ----- > From: "Leif W" <war...@us...> > To: "DynAPI-Dev" <dyn...@li...> > Sent: Thursday, October 16, 2003 6:56 PM > Subject: [Dynapi-Dev] IOElement SODA date format > > > > Hi, > > > > In the docs (quickref.soda) and the code, the date > format I've seen > > mentioned or handled is "mm/dd/yyyy hh:nn:ss" but > I've just come to a > point > > in the code in ioelmsrv.soda in ws__SODA2Var under > 'else if ( tagType == > > "d" )', where in the JScript version of the ASP, > it passes this format > > string to the JScript Date() object as a > constructor argument. > > > > But looking through the most recent (ok maybe this > is outdated) JS > reference > > manual I could find (Netscape's Core Reference JS > 1.5), I only found these > > date formats, not the one being used. Am I > missing something? > > > > today = new Date() > > birthday = new Date("December 17, 1995 03:24:00") > > birthday = new Date(95,11,17) > > birthday = new Date(95,11,17,3,24,0) > > > > Leif > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback > Program. > > SourceForge.net hosts over 70,000 Open Source > Projects. > > See the people who have HELPED US provide better > services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Leif W <war...@us...> - 2003-10-17 14:07:46
|
----- Original Message ----- From: "Kevin" <ke...@ke...> To: "Dynapi-Dev" <Dyn...@li...> Sent: Thursday, October 16, 2003 5:25 PM Subject: [Dynapi-Dev] cvs / php [snip] > Leif: > Will the php soda port you are working on include > the file upload stuff? > > - > Kevin I'm nearing the end of the initial translation pass through the ioelmsrv.soda. Next I'll have to go through a lot of debugging to see if the my first attempt to create PHP code was successful. As you've noticed before, there's probably a lot of syntax or logic errors. When I get it working, I'll release it without the upload code, and without the specific language switching code. It'll just work with PHP 4.1.0 or greater (assuming 4.3.x). Next I'll work on the version specific stuff, introducing mechanisms to better handle the pre and post 4.1.0 differences. Then I'll probably put in the file upload stuff. Leif |
From: Peter R. <ant...@gm...> - 2003-10-17 12:18:28
|
Hi, is there something like an release-plan available? When will there be the next release (beta or rc)? The RoadMap-Page says that the missing step for releasing 3.0 is "Fine Tune & Test Libraries". So what are the open points for 3.0? If possible I'd like to work on something that brings the release of 3.0 closer ;) Regards, Peter ..: Keep up the good work - DynAPI 3 really, really rocks! ..: I hope you don't feel "pushed" or anything - really not my intention! |
From: Raymond I. <xw...@ya...> - 2003-10-17 05:53:30
|
Hi All, (Sorry if I missed anything my mailbox was full) The attached file contains some changes to the DragEvent: [*] Modify DragEvent to init dragging when mousdown and during mousemove This change should allow the layer to receive mouse events even with dragevents enabled. Try the demos with this update. From my test I can click on nodes on the tree widget and still have the ability to drag these nodes. -- Raymond Irving __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Leif W <war...@us...> - 2003-10-16 22:58:04
|
Hi, In the docs (quickref.soda) and the code, the date format I've seen mentioned or handled is "mm/dd/yyyy hh:nn:ss" but I've just come to a point in the code in ioelmsrv.soda in ws__SODA2Var under 'else if ( tagType == "d" )', where in the JScript version of the ASP, it passes this format string to the JScript Date() object as a constructor argument. But looking through the most recent (ok maybe this is outdated) JS reference manual I could find (Netscape's Core Reference JS 1.5), I only found these date formats, not the one being used. Am I missing something? today = new Date() birthday = new Date("December 17, 1995 03:24:00") birthday = new Date(95,11,17) birthday = new Date(95,11,17,3,24,0) Leif |
From: Kevin <ke...@ke...> - 2003-10-16 21:23:57
|
Current cvs version: 1) dynapi.gui.panelbar-stacker.html Is not called from the "Window and Stacker" link in the examples.html file. 2) References to _xui.packages.js in speedtest* examples not resolved. 3) (posted to list) Example dynapi.gui.tree.html missing images in Mozilla but no errors. In IE not loading with "method not found" error. Leif: Will the php soda port you are working on include the file upload stuff? - Kevin |
From: <bo...@co...> - 2003-10-15 14:12:05
|
> i use the element in a table. > So the first works fine, but the second.... > After the setHTML the parent cell size is go to smaller than layer size. The cell size is the layer minimalized content width. Cow |
From: <bo...@co...> - 2003-10-15 14:05:19
|
Hi! I have 2 function: this.menu.node.setHTML(this.menu.content.replace('{@min}',this.menu.max)); this.animation.tmp_content=0; this.setHeight(this.menu.height); and this.menu.node.setHTML(this.menu.content.replace('{@min}',this.menu.min)); this.animation.tmp_content=0; this.setHeight(this._height); i use the element in a table. So the first works fine, but the second.... After the setHTML the parent cell size is go to smaller than layer size. What's I'm worng? cow |
From: Raymond I. <xw...@ya...> - 2003-10-14 18:54:29
|
For MacIE (and NS4) you still will have to use the cover layer. This only fixes the problem where blank layers not listening to events --- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hi folks! > > I havent seen this in the solution, but i will > explain anyway... > > When having a layer with html/text and that layer > have a onclick or > onmouseover or something else. > > In WinIE there is no problem. > In MacIE if clicking or dragging over the text of > the layer, the action > is not invoked. > > Does the solution cover this part? Will the > background image fix this > problem? In my brain, this wont solve this problem. > The only solution i > see, is to add a transparent gif in a layer over > this layer. As the text > always will be ontop of the bg image in the bottom > layer, and if the > text-properties(?) does not change i really dont see > the solution. > > Please enlighten me about how this will solve our > problem. > > Regards > Daniel > > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Raymond > Irving > Sent: den 13 oktober 2003 19:24 > To: dyn...@li... > Subject: RE: [Dynapi-Dev] Layers and text - (The > solution) > > > > Ok, > > Can we say that if a layer does _hasMouseEvents but > does not have bgcolor or bgimage or html then we set > a > default transparent gif for the bgimage of the layer > for MacIE and WinIE? > > -- > Raymond Irving > > > --- Raymond Irving <xw...@ya...> wrote: > > Hi All, > > > > Got this information from > > http://dhtmlnirvana.com/oldalchemy/dragfix.htm > > > > ...[snip]... > > > > Part of being a developer is to find workarounds > to > > existing problems. One long time bugbear has been > > the > > highlighting of content when using a drag scroller > > dhtml technique. Fortunately, such a workaround > > exists. The trick is to create a layer that > contains > > a > > blank gif. In the example below a blank gif is > used > > as > > a background. > > > > <DIV ID="shieldLayer" STYLE="position: absolute; > > left: > > 0px; top: 0px; width: 110%; height: 100%; > > background-image: url(images/blank.gif); z-index: > > 18; > > visibility: hidden;"></DIV> > > > > When a onMouseDown event is triggered when we are > > using a drag scroll technique we simply toggle the > > visibility of the layer to on. When the mouse > leaves > > the event capturing layer we then hide the > > shieldLayer. It is important that the shield > layers > > z-index be set to higher than everything else on > the > > page except for the event capturing layer. Do this > > and > > no more highlighting of images and content with > > dragging techniques in Internet Explorer. > > > > The other bug is that IE5.5 does not like empty > > layers > > in relation to drag scroll techniques. Therefore, > if > > you have a layer with no content, it will not > > capture > > events, but if you add something to it, it will > > capture the events. That something can be the same > > size of the layer like an invisible gif. I can get > > things to work just by placing an invisible gif as > > the > > background of the layer and all becomes good. > > > > <DIV ID="eventLayer" STYLE="position: absolute; > > left: > > 0px; top: 0px; width: 60px; height: 1020px; > > background-image: url(images/blank.gif); z-index: > > 19; > > visibility: hidden;"></DIV> > > > > ...[snip]... > > > > > > PS. Don't we just love Microsoft? :) > > > > -- > > Raymond Irving > > > > --- Jacob Levy <jy...@mo...> wrote: > > > Raymond > > > > > > This is easy to fix, then. All you have to do is > > to > > > make the default > > > background image a 1x1 GIF, for every layer. So > if > > > the user does not add > > > content or provide her own background image, the > > > layer will still be able > > > to get events. > > > > > > I don't have the code ready to show how to do > this > > > but it seems easy > > > enough for someone who knows their way around > the > > > dynapi core code.. > > > > > > --JYL > > > > > > > This is a bug in IE. In order for the top > layer > > to > > > > listen to onmousemove events you will have to > > add > > > > content to the layer or set a background image > > > > > > > > We might have to log this inside the > > > knowledge-base > > > > section of the troubleshooting docs. > > > > > > > > -- > > > > Raymond Irving > > > > > > > > --- Daniel Tiru <de...@ti...> wrote: > > > >> Hehe, kul att det blev bra :) > > > >> > > > >> Well.. I must have support... And have used > > some > > > in > > > >> very sharp > > > >> enviorments like http://spinn.svt.se which > uses > > > the > > > >> html menu, it works > > > >> very nice... Just this one that got a > > problem... > > > But > > > >> its "fixed" now. > > > >> But i dont know if this fix can be used for > > > >> permanent solutions... > > > >> > > > >> Regards > > > >> Daniel > > > >> > > > >> -----Original Message----- > > > >> From: dyn...@li... > > > >> > [mailto:dyn...@li...] > > > On > > > >> Behalf Of Michael > > > >> Bystrom > > > >> Sent: den 11 oktober 2003 02:00 > > > >> To: dyn...@li... > > > >> Subject: Re: [Dynapi-Dev] Layers and text > > > >> > > > >> > > > >> > > > >> Nä jag har köpt Ekeskog soffan (den Stora) > och > > > >> Barkaby fåtöljen alla i > > > >> Sand Färg mmmm mycket fint :) > === message truncated === __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Daniel T. <de...@ti...> - 2003-10-14 07:57:40
|
Hi folks! I havent seen this in the solution, but i will explain anyway... When having a layer with html/text and that layer have a onclick or onmouseover or something else. In WinIE there is no problem. In MacIE if clicking or dragging over the text of the layer, the action is not invoked. Does the solution cover this part? Will the background image fix this problem? In my brain, this wont solve this problem. The only solution i see, is to add a transparent gif in a layer over this layer. As the text always will be ontop of the bg image in the bottom layer, and if the text-properties(?) does not change i really dont see the solution. Please enlighten me about how this will solve our problem. Regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: den 13 oktober 2003 19:24 To: dyn...@li... Subject: RE: [Dynapi-Dev] Layers and text - (The solution) Ok, Can we say that if a layer does _hasMouseEvents but does not have bgcolor or bgimage or html then we set a default transparent gif for the bgimage of the layer for MacIE and WinIE? -- Raymond Irving --- Raymond Irving <xw...@ya...> wrote: > Hi All, >=20 > Got this information from > http://dhtmlnirvana.com/oldalchemy/dragfix.htm >=20 > ...[snip]... >=20 > Part of being a developer is to find workarounds to > existing problems. One long time bugbear has been > the > highlighting of content when using a drag scroller > dhtml technique. Fortunately, such a workaround > exists. The trick is to create a layer that contains > a > blank gif. In the example below a blank gif is used > as > a background. >=20 > <DIV ID=3D"shieldLayer" STYLE=3D"position: absolute; > left: > 0px; top: 0px; width: 110%; height: 100%; > background-image: url(images/blank.gif); z-index: > 18; > visibility: hidden;"></DIV> >=20 > When a onMouseDown event is triggered when we are > using a drag scroll technique we simply toggle the > visibility of the layer to on. When the mouse leaves > the event capturing layer we then hide the > shieldLayer. It is important that the shield layers > z-index be set to higher than everything else on the > page except for the event capturing layer. Do this > and > no more highlighting of images and content with > dragging techniques in Internet Explorer. >=20 > The other bug is that IE5.5 does not like empty > layers > in relation to drag scroll techniques. Therefore, if > you have a layer with no content, it will not > capture > events, but if you add something to it, it will > capture the events. That something can be the same > size of the layer like an invisible gif. I can get > things to work just by placing an invisible gif as > the > background of the layer and all becomes good. >=20 > <DIV ID=3D"eventLayer" STYLE=3D"position: absolute; > left: > 0px; top: 0px; width: 60px; height: 1020px; > background-image: url(images/blank.gif); z-index: > 19; > visibility: hidden;"></DIV> >=20 > ...[snip]... >=20 >=20 > PS. Don't we just love Microsoft? :) >=20 > -- > Raymond Irving >=20 > --- Jacob Levy <jy...@mo...> wrote: > > Raymond > >=20 > > This is easy to fix, then. All you have to do is > to > > make the default > > background image a 1x1 GIF, for every layer. So if > > the user does not add > > content or provide her own background image, the > > layer will still be able > > to get events. > >=20 > > I don't have the code ready to show how to do this > > but it seems easy > > enough for someone who knows their way around the > > dynapi core code.. > >=20 > > --JYL > >=20 > > > This is a bug in IE. In order for the top layer > to > > > listen to onmousemove events you will have to > add > > > content to the layer or set a background image > > > > > > We might have to log this inside the > > knowledge-base > > > section of the troubleshooting docs. > > > > > > -- > > > Raymond Irving > > > > > > --- Daniel Tiru <de...@ti...> wrote: > > >> Hehe, kul att det blev bra :) > > >> > > >> Well.. I must have support... And have used > some > > in > > >> very sharp > > >> enviorments like http://spinn.svt.se which uses > > the > > >> html menu, it works > > >> very nice... Just this one that got a > problem... > > But > > >> its "fixed" now. > > >> But i dont know if this fix can be used for > > >> permanent solutions... > > >> > > >> Regards > > >> Daniel > > >> > > >> -----Original Message----- > > >> From: dyn...@li... > > >> [mailto:dyn...@li...] > > On > > >> Behalf Of Michael > > >> Bystrom > > >> Sent: den 11 oktober 2003 02:00 > > >> To: dyn...@li... > > >> Subject: Re: [Dynapi-Dev] Layers and text > > >> > > >> > > >> > > >> N=E4 jag har k=F6pt Ekeskog soffan (den Stora) och > > >> Barkaby f=E5t=F6ljen alla i > > >> Sand F=E4rg mmmm mycket fint :) > > >> > > >> Yepp trans gif works fine, > > >> > > >> When I think of it I did the same when I wrote > my > > >> first api (dhtmlapi). > > >> Then I had the same problem with my list > widget. > > >> > > >> Now days I stopped all GUI design for the Mac > > IE5, > > >> there is no more hope > > >> for it and Mozilla and Safari is SOOOOOOO much > > >> faster. > > >> > > >> For IOS I've dropped support for the tree list > > >> widget no match for it... > > >> > > >> Hmmm sad really nice html browser fast really > > fast. > > >> Microsoft works in mysterious ways... > > >> > > >> Oh jag k=F6pte Skyar lampan oks=E5 hehe > > >> > > >> Michael > > >> > > >> > > >> > Hi! > > >> > > > >> > Did you buy a "klippan"-sofa? =3D) > > >> > > > >> > Well.. Can you check the example again? I > have > > >> "fixed" the glitch... > > >> > Temporary... And you will see what i mean > with > > >> "temporary" and "fix" > > >> > :) > > >> > > > >> > Regards > > >> > Daniel > > >> > > > >> > -----Original Message----- > > >> > From: dyn...@li... > > >> > > [mailto:dyn...@li...] > > On > > >> Behalf Of Michael > > >> > Bystrom > > >> > Sent: den 11 oktober 2003 01:39 > > >> > To: dyn...@li... > > >> > Subject: Re: [Dynapi-Dev] Layers and text > > >> > > > >> > > > >> > Sorry for the late response I had to go to > IKEA > > >> and buy extra sofa :) > > >> > > > >> > Ohh I see what you mean, That IE5 mac will > not > > >> fire it's events over > > >> > the html elements. Yep aware this, It refuses > > to > > >> bubble the event down > > >> > > >> > it just sees the html elm and stops. > > >> > > > >> > I've tired and have no fix for this, it's the > > same > > >> for my button > > >> > widget (and >=20 =3D=3D=3D message truncated =3D=3D=3D __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Jacob L. <jy...@mo...> - 2003-10-13 17:50:41
|
Yes, very good. --JYL > Hi, > > I think we can use this solution along with > setTextSelectable() to prevent text and images from > being selected during a drag, agree? > > for example: > > var l = new DynLayer('',0,0,100,100,'yellow'); > l.setDragEnabled(true); > // user can drag layer but text will not > // be selected during drag > l.setTextSelectable(false); > > // The shieldLayer workaround will be implemented > // within the API. No need to code your own. > > .... > > <DIV ID="shieldLayer" STYLE="position: absolute; left: > 0px; top: 0px; width: 110%; height: 100%; > background-image: url(images/blank.gif); z-index: 18; > visibility: hidden;"></DIV> > > When a onMouseDown event is triggered when we are > using a drag scroll technique we simply toggle the > visibility of the layer to on. When the mouse leaves > the event capturing layer we then hide the > shieldLayer. It is important that the shield layers > z-index be set to higher than everything else on the > page except for the event capturing layer. Do this and > no more highlighting of images and content with > dragging techniques in Internet Explorer. > > .... > > > -- > Raymond Irving > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Raymond I. <xw...@ya...> - 2003-10-13 17:31:29
|
Hi, I think we can use this solution along with setTextSelectable() to prevent text and images from being selected during a drag, agree? for example: var l = new DynLayer('',0,0,100,100,'yellow'); l.setDragEnabled(true); // user can drag layer but text will not // be selected during drag l.setTextSelectable(false); // The shieldLayer workaround will be implemented // within the API. No need to code your own. .... <DIV ID="shieldLayer" STYLE="position: absolute; left: 0px; top: 0px; width: 110%; height: 100%; background-image: url(images/blank.gif); z-index: 18; visibility: hidden;"></DIV> When a onMouseDown event is triggered when we are using a drag scroll technique we simply toggle the visibility of the layer to on. When the mouse leaves the event capturing layer we then hide the shieldLayer. It is important that the shield layers z-index be set to higher than everything else on the page except for the event capturing layer. Do this and no more highlighting of images and content with dragging techniques in Internet Explorer. .... -- Raymond Irving __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-13 17:24:13
|
Ok, Can we say that if a layer does _hasMouseEvents but does not have bgcolor or bgimage or html then we set a default transparent gif for the bgimage of the layer for MacIE and WinIE? -- Raymond Irving --- Raymond Irving <xw...@ya...> wrote: > Hi All, > > Got this information from > http://dhtmlnirvana.com/oldalchemy/dragfix.htm > > ...[snip]... > > Part of being a developer is to find workarounds to > existing problems. One long time bugbear has been > the > highlighting of content when using a drag scroller > dhtml technique. Fortunately, such a workaround > exists. The trick is to create a layer that contains > a > blank gif. In the example below a blank gif is used > as > a background. > > <DIV ID="shieldLayer" STYLE="position: absolute; > left: > 0px; top: 0px; width: 110%; height: 100%; > background-image: url(images/blank.gif); z-index: > 18; > visibility: hidden;"></DIV> > > When a onMouseDown event is triggered when we are > using a drag scroll technique we simply toggle the > visibility of the layer to on. When the mouse leaves > the event capturing layer we then hide the > shieldLayer. It is important that the shield layers > z-index be set to higher than everything else on the > page except for the event capturing layer. Do this > and > no more highlighting of images and content with > dragging techniques in Internet Explorer. > > The other bug is that IE5.5 does not like empty > layers > in relation to drag scroll techniques. Therefore, if > you have a layer with no content, it will not > capture > events, but if you add something to it, it will > capture the events. That something can be the same > size of the layer like an invisible gif. I can get > things to work just by placing an invisible gif as > the > background of the layer and all becomes good. > > <DIV ID="eventLayer" STYLE="position: absolute; > left: > 0px; top: 0px; width: 60px; height: 1020px; > background-image: url(images/blank.gif); z-index: > 19; > visibility: hidden;"></DIV> > > ...[snip]... > > > PS. Don't we just love Microsoft? :) > > -- > Raymond Irving > > --- Jacob Levy <jy...@mo...> wrote: > > Raymond > > > > This is easy to fix, then. All you have to do is > to > > make the default > > background image a 1x1 GIF, for every layer. So if > > the user does not add > > content or provide her own background image, the > > layer will still be able > > to get events. > > > > I don't have the code ready to show how to do this > > but it seems easy > > enough for someone who knows their way around the > > dynapi core code.. > > > > --JYL > > > > > This is a bug in IE. In order for the top layer > to > > > listen to onmousemove events you will have to > add > > > content to the layer or set a background image > > > > > > We might have to log this inside the > > knowledge-base > > > section of the troubleshooting docs. > > > > > > -- > > > Raymond Irving > > > > > > --- Daniel Tiru <de...@ti...> wrote: > > >> Hehe, kul att det blev bra :) > > >> > > >> Well.. I must have support... And have used > some > > in > > >> very sharp > > >> enviorments like http://spinn.svt.se which uses > > the > > >> html menu, it works > > >> very nice... Just this one that got a > problem... > > But > > >> its "fixed" now. > > >> But i dont know if this fix can be used for > > >> permanent solutions... > > >> > > >> Regards > > >> Daniel > > >> > > >> -----Original Message----- > > >> From: dyn...@li... > > >> [mailto:dyn...@li...] > > On > > >> Behalf Of Michael > > >> Bystrom > > >> Sent: den 11 oktober 2003 02:00 > > >> To: dyn...@li... > > >> Subject: Re: [Dynapi-Dev] Layers and text > > >> > > >> > > >> > > >> Nä jag har köpt Ekeskog soffan (den Stora) och > > >> Barkaby fåtöljen alla i > > >> Sand Färg mmmm mycket fint :) > > >> > > >> Yepp trans gif works fine, > > >> > > >> When I think of it I did the same when I wrote > my > > >> first api (dhtmlapi). > > >> Then I had the same problem with my list > widget. > > >> > > >> Now days I stopped all GUI design for the Mac > > IE5, > > >> there is no more hope > > >> for it and Mozilla and Safari is SOOOOOOO much > > >> faster. > > >> > > >> For IOS I've dropped support for the tree list > > >> widget no match for it... > > >> > > >> Hmmm sad really nice html browser fast really > > fast. > > >> Microsoft works in mysterious ways... > > >> > > >> Oh jag köpte Skyar lampan okså hehe > > >> > > >> Michael > > >> > > >> > > >> > Hi! > > >> > > > >> > Did you buy a "klippan"-sofa? =) > > >> > > > >> > Well.. Can you check the example again? I > have > > >> "fixed" the glitch... > > >> > Temporary... And you will see what i mean > with > > >> "temporary" and "fix" > > >> > :) > > >> > > > >> > Regards > > >> > Daniel > > >> > > > >> > -----Original Message----- > > >> > From: dyn...@li... > > >> > > [mailto:dyn...@li...] > > On > > >> Behalf Of Michael > > >> > Bystrom > > >> > Sent: den 11 oktober 2003 01:39 > > >> > To: dyn...@li... > > >> > Subject: Re: [Dynapi-Dev] Layers and text > > >> > > > >> > > > >> > Sorry for the late response I had to go to > IKEA > > >> and buy extra sofa :) > > >> > > > >> > Ohh I see what you mean, That IE5 mac will > not > > >> fire it's events over > > >> > the html elements. Yep aware this, It refuses > > to > > >> bubble the event down > > >> > > >> > it just sees the html elm and stops. > > >> > > > >> > I've tired and have no fix for this, it's the > > same > > >> for my button > > >> > widget (and > === message truncated === __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-13 16:43:41
|
Hi All, Got this information from http://dhtmlnirvana.com/oldalchemy/dragfix.htm ...[snip]... Part of being a developer is to find workarounds to existing problems. One long time bugbear has been the highlighting of content when using a drag scroller dhtml technique. Fortunately, such a workaround exists. The trick is to create a layer that contains a blank gif. In the example below a blank gif is used as a background. <DIV ID="shieldLayer" STYLE="position: absolute; left: 0px; top: 0px; width: 110%; height: 100%; background-image: url(images/blank.gif); z-index: 18; visibility: hidden;"></DIV> When a onMouseDown event is triggered when we are using a drag scroll technique we simply toggle the visibility of the layer to on. When the mouse leaves the event capturing layer we then hide the shieldLayer. It is important that the shield layers z-index be set to higher than everything else on the page except for the event capturing layer. Do this and no more highlighting of images and content with dragging techniques in Internet Explorer. The other bug is that IE5.5 does not like empty layers in relation to drag scroll techniques. Therefore, if you have a layer with no content, it will not capture events, but if you add something to it, it will capture the events. That something can be the same size of the layer like an invisible gif. I can get things to work just by placing an invisible gif as the background of the layer and all becomes good. <DIV ID="eventLayer" STYLE="position: absolute; left: 0px; top: 0px; width: 60px; height: 1020px; background-image: url(images/blank.gif); z-index: 19; visibility: hidden;"></DIV> ...[snip]... PS. Don't we just love Microsoft? :) -- Raymond Irving --- Jacob Levy <jy...@mo...> wrote: > Raymond > > This is easy to fix, then. All you have to do is to > make the default > background image a 1x1 GIF, for every layer. So if > the user does not add > content or provide her own background image, the > layer will still be able > to get events. > > I don't have the code ready to show how to do this > but it seems easy > enough for someone who knows their way around the > dynapi core code.. > > --JYL > > > This is a bug in IE. In order for the top layer to > > listen to onmousemove events you will have to add > > content to the layer or set a background image > > > > We might have to log this inside the > knowledge-base > > section of the troubleshooting docs. > > > > -- > > Raymond Irving > > > > --- Daniel Tiru <de...@ti...> wrote: > >> Hehe, kul att det blev bra :) > >> > >> Well.. I must have support... And have used some > in > >> very sharp > >> enviorments like http://spinn.svt.se which uses > the > >> html menu, it works > >> very nice... Just this one that got a problem... > But > >> its "fixed" now. > >> But i dont know if this fix can be used for > >> permanent solutions... > >> > >> Regards > >> Daniel > >> > >> -----Original Message----- > >> From: dyn...@li... > >> [mailto:dyn...@li...] > On > >> Behalf Of Michael > >> Bystrom > >> Sent: den 11 oktober 2003 02:00 > >> To: dyn...@li... > >> Subject: Re: [Dynapi-Dev] Layers and text > >> > >> > >> > >> Nä jag har köpt Ekeskog soffan (den Stora) och > >> Barkaby fåtöljen alla i > >> Sand Färg mmmm mycket fint :) > >> > >> Yepp trans gif works fine, > >> > >> When I think of it I did the same when I wrote my > >> first api (dhtmlapi). > >> Then I had the same problem with my list widget. > >> > >> Now days I stopped all GUI design for the Mac > IE5, > >> there is no more hope > >> for it and Mozilla and Safari is SOOOOOOO much > >> faster. > >> > >> For IOS I've dropped support for the tree list > >> widget no match for it... > >> > >> Hmmm sad really nice html browser fast really > fast. > >> Microsoft works in mysterious ways... > >> > >> Oh jag köpte Skyar lampan okså hehe > >> > >> Michael > >> > >> > >> > Hi! > >> > > >> > Did you buy a "klippan"-sofa? =) > >> > > >> > Well.. Can you check the example again? I have > >> "fixed" the glitch... > >> > Temporary... And you will see what i mean with > >> "temporary" and "fix" > >> > :) > >> > > >> > Regards > >> > Daniel > >> > > >> > -----Original Message----- > >> > From: dyn...@li... > >> > [mailto:dyn...@li...] > On > >> Behalf Of Michael > >> > Bystrom > >> > Sent: den 11 oktober 2003 01:39 > >> > To: dyn...@li... > >> > Subject: Re: [Dynapi-Dev] Layers and text > >> > > >> > > >> > Sorry for the late response I had to go to IKEA > >> and buy extra sofa :) > >> > > >> > Ohh I see what you mean, That IE5 mac will not > >> fire it's events over > >> > the html elements. Yep aware this, It refuses > to > >> bubble the event down > >> > >> > it just sees the html elm and stops. > >> > > >> > I've tired and have no fix for this, it's the > same > >> for my button > >> > widget (and > >> > others) I don't think this is a problem with > the > >> api because the api > >> > 2.5+ has the same problem. > >> > > >> > I will not go into this here but Mac IE5 has > MAJOR > >> quirks concerning > >> > events and InsertAdjacentHTML and createElement > >> when html elements are > >> > >> > involved. > >> > > >> > If this is something that you REALY need I > would > >> use something like > >> > this. And use it for Mac IE5 specific only. > >> > > >> > dynapi.document.onmousemove = function(e){ > >> > > >> > var o = lyrWinIETop > >> > if( e.getPageX()>o.getPageX() > >> > && e.getPageX()<o.getPageX()+o.getWidth() > >> > && e.getPageY()>o.getPageY() > >> > && e.getPageY()<o.getPageY()+o.getHeight() ) > { > >> > > >> o.setBgColor(dynapi.functions.getRandomColor()); > >> > } > >> > } > >> > > >> > This will create the effect I think you where > >> after. > >> > > >> > Michael > >> > > >> > > >> > > >> >> Hi Michael! > >> >> > >> >> Check out http://www.tiru.se/mobug.html > >> >> > >> >> What I get wierd is when using setBgColor() i > >> think :) > >> >> > >> >> Check the example and you will c :) > >> >> > >> >> /Daniel > >> >> > >> >> -----Original Message----- > >> >> From: dyn...@li... > >> >> > [mailto:dyn...@li...] > >> On Behalf Of Michael > >> >> Bystrom > >> >> Sent: den 10 oktober 2003 08:15 > >> >> To: dyn...@li... > >> >> Subject: Re: [Dynapi-Dev] Layers and text > >> >> > >> >> > >> >> Show me with code what you mean! > >> >> > >> >> obj = dynapi.document.addChild( new DynLayer() > ) > >> >> Etc... > >> >> > >> >> > >> >> I usually can fix mac things > >> >> Michael > >> >> > >> >> > >> >> > >> >> Den 03-10-10 08.05, skrev "Daniel Tiru" > >> <de...@ti...>: > >> >> > >> >>> Hello developers! > === message truncated === __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-13 16:41:12
|
True but remember that IE always reloads background images wheever the layer is dragged. -- Raymond Irving --- Jacob Levy <jy...@mo...> wrote: > Raymond > > This is easy to fix, then. All you have to do is to > make the default > background image a 1x1 GIF, for every layer. So if > the user does not add > content or provide her own background image, the > layer will still be able > to get events. > > I don't have the code ready to show how to do this > but it seems easy > enough for someone who knows their way around the > dynapi core code.. > > --JYL > > > This is a bug in IE. In order for the top layer to > > listen to onmousemove events you will have to add > > content to the layer or set a background image > > > > We might have to log this inside the > knowledge-base > > section of the troubleshooting docs. > > > > -- > > Raymond Irving > > > > --- Daniel Tiru <de...@ti...> wrote: > >> Hehe, kul att det blev bra :) > >> > >> Well.. I must have support... And have used some > in > >> very sharp > >> enviorments like http://spinn.svt.se which uses > the > >> html menu, it works > >> very nice... Just this one that got a problem... > But > >> its "fixed" now. > >> But i dont know if this fix can be used for > >> permanent solutions... > >> > >> Regards > >> Daniel > >> > >> -----Original Message----- > >> From: dyn...@li... > >> [mailto:dyn...@li...] > On > >> Behalf Of Michael > >> Bystrom > >> Sent: den 11 oktober 2003 02:00 > >> To: dyn...@li... > >> Subject: Re: [Dynapi-Dev] Layers and text > >> > >> > >> > >> Nä jag har köpt Ekeskog soffan (den Stora) och > >> Barkaby fåtöljen alla i > >> Sand Färg mmmm mycket fint :) > >> > >> Yepp trans gif works fine, > >> > >> When I think of it I did the same when I wrote my > >> first api (dhtmlapi). > >> Then I had the same problem with my list widget. > >> > >> Now days I stopped all GUI design for the Mac > IE5, > >> there is no more hope > >> for it and Mozilla and Safari is SOOOOOOO much > >> faster. > >> > >> For IOS I've dropped support for the tree list > >> widget no match for it... > >> > >> Hmmm sad really nice html browser fast really > fast. > >> Microsoft works in mysterious ways... > >> > >> Oh jag köpte Skyar lampan okså hehe > >> > >> Michael > >> > >> > >> > Hi! > >> > > >> > Did you buy a "klippan"-sofa? =) > >> > > >> > Well.. Can you check the example again? I have > >> "fixed" the glitch... > >> > Temporary... And you will see what i mean with > >> "temporary" and "fix" > >> > :) > >> > > >> > Regards > >> > Daniel > >> > > >> > -----Original Message----- > >> > From: dyn...@li... > >> > [mailto:dyn...@li...] > On > >> Behalf Of Michael > >> > Bystrom > >> > Sent: den 11 oktober 2003 01:39 > >> > To: dyn...@li... > >> > Subject: Re: [Dynapi-Dev] Layers and text > >> > > >> > > >> > Sorry for the late response I had to go to IKEA > >> and buy extra sofa :) > >> > > >> > Ohh I see what you mean, That IE5 mac will not > >> fire it's events over > >> > the html elements. Yep aware this, It refuses > to > >> bubble the event down > >> > >> > it just sees the html elm and stops. > >> > > >> > I've tired and have no fix for this, it's the > same > >> for my button > >> > widget (and > >> > others) I don't think this is a problem with > the > >> api because the api > >> > 2.5+ has the same problem. > >> > > >> > I will not go into this here but Mac IE5 has > MAJOR > >> quirks concerning > >> > events and InsertAdjacentHTML and createElement > >> when html elements are > >> > >> > involved. > >> > > >> > If this is something that you REALY need I > would > >> use something like > >> > this. And use it for Mac IE5 specific only. > >> > > >> > dynapi.document.onmousemove = function(e){ > >> > > >> > var o = lyrWinIETop > >> > if( e.getPageX()>o.getPageX() > >> > && e.getPageX()<o.getPageX()+o.getWidth() > >> > && e.getPageY()>o.getPageY() > >> > && e.getPageY()<o.getPageY()+o.getHeight() ) > { > >> > > >> o.setBgColor(dynapi.functions.getRandomColor()); > >> > } > >> > } > >> > > >> > This will create the effect I think you where > >> after. > >> > > >> > Michael > >> > > >> > > >> > > >> >> Hi Michael! > >> >> > >> >> Check out http://www.tiru.se/mobug.html > >> >> > >> >> What I get wierd is when using setBgColor() i > >> think :) > >> >> > >> >> Check the example and you will c :) > >> >> > >> >> /Daniel > >> >> > >> >> -----Original Message----- > >> >> From: dyn...@li... > >> >> > [mailto:dyn...@li...] > >> On Behalf Of Michael > >> >> Bystrom > >> >> Sent: den 10 oktober 2003 08:15 > >> >> To: dyn...@li... > >> >> Subject: Re: [Dynapi-Dev] Layers and text > >> >> > >> >> > >> >> Show me with code what you mean! > >> >> > >> >> obj = dynapi.document.addChild( new DynLayer() > ) > >> >> Etc... > >> >> > >> >> > >> >> I usually can fix mac things > >> >> Michael > >> >> > >> >> > >> >> > >> >> Den 03-10-10 08.05, skrev "Daniel Tiru" > >> <de...@ti...>: > >> >> > >> >>> Hello developers! > === message truncated === __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Jacob L. <jy...@mo...> - 2003-10-13 15:09:56
|
Raymond This is easy to fix, then. All you have to do is to make the default background image a 1x1 GIF, for every layer. So if the user does not add content or provide her own background image, the layer will still be able to get events. I don't have the code ready to show how to do this but it seems easy enough for someone who knows their way around the dynapi core code.. --JYL > This is a bug in IE. In order for the top layer to > listen to onmousemove events you will have to add > content to the layer or set a background image > > We might have to log this inside the knowledge-base > section of the troubleshooting docs. > > -- > Raymond Irving > > --- Daniel Tiru <de...@ti...> wrote: >> Hehe, kul att det blev bra :) >> >> Well.. I must have support... And have used some in >> very sharp >> enviorments like http://spinn.svt.se which uses the >> html menu, it works >> very nice... Just this one that got a problem... But >> its "fixed" now. >> But i dont know if this fix can be used for >> permanent solutions... >> >> Regards >> Daniel >> >> -----Original Message----- >> From: dyn...@li... >> [mailto:dyn...@li...] On >> Behalf Of Michael >> Bystrom >> Sent: den 11 oktober 2003 02:00 >> To: dyn...@li... >> Subject: Re: [Dynapi-Dev] Layers and text >> >> >> >> Nä jag har köpt Ekeskog soffan (den Stora) och >> Barkaby fåtöljen alla i >> Sand Färg mmmm mycket fint :) >> >> Yepp trans gif works fine, >> >> When I think of it I did the same when I wrote my >> first api (dhtmlapi). >> Then I had the same problem with my list widget. >> >> Now days I stopped all GUI design for the Mac IE5, >> there is no more hope >> for it and Mozilla and Safari is SOOOOOOO much >> faster. >> >> For IOS I've dropped support for the tree list >> widget no match for it... >> >> Hmmm sad really nice html browser fast really fast. >> Microsoft works in mysterious ways... >> >> Oh jag köpte Skyar lampan okså hehe >> >> Michael >> >> >> > Hi! >> > >> > Did you buy a "klippan"-sofa? =) >> > >> > Well.. Can you check the example again? I have >> "fixed" the glitch... >> > Temporary... And you will see what i mean with >> "temporary" and "fix" >> > :) >> > >> > Regards >> > Daniel >> > >> > -----Original Message----- >> > From: dyn...@li... >> > [mailto:dyn...@li...] On >> Behalf Of Michael >> > Bystrom >> > Sent: den 11 oktober 2003 01:39 >> > To: dyn...@li... >> > Subject: Re: [Dynapi-Dev] Layers and text >> > >> > >> > Sorry for the late response I had to go to IKEA >> and buy extra sofa :) >> > >> > Ohh I see what you mean, That IE5 mac will not >> fire it's events over >> > the html elements. Yep aware this, It refuses to >> bubble the event down >> >> > it just sees the html elm and stops. >> > >> > I've tired and have no fix for this, it's the same >> for my button >> > widget (and >> > others) I don't think this is a problem with the >> api because the api >> > 2.5+ has the same problem. >> > >> > I will not go into this here but Mac IE5 has MAJOR >> quirks concerning >> > events and InsertAdjacentHTML and createElement >> when html elements are >> >> > involved. >> > >> > If this is something that you REALY need I would >> use something like >> > this. And use it for Mac IE5 specific only. >> > >> > dynapi.document.onmousemove = function(e){ >> > >> > var o = lyrWinIETop >> > if( e.getPageX()>o.getPageX() >> > && e.getPageX()<o.getPageX()+o.getWidth() >> > && e.getPageY()>o.getPageY() >> > && e.getPageY()<o.getPageY()+o.getHeight() ) { >> > >> o.setBgColor(dynapi.functions.getRandomColor()); >> > } >> > } >> > >> > This will create the effect I think you where >> after. >> > >> > Michael >> > >> > >> > >> >> Hi Michael! >> >> >> >> Check out http://www.tiru.se/mobug.html >> >> >> >> What I get wierd is when using setBgColor() i >> think :) >> >> >> >> Check the example and you will c :) >> >> >> >> /Daniel >> >> >> >> -----Original Message----- >> >> From: dyn...@li... >> >> [mailto:dyn...@li...] >> On Behalf Of Michael >> >> Bystrom >> >> Sent: den 10 oktober 2003 08:15 >> >> To: dyn...@li... >> >> Subject: Re: [Dynapi-Dev] Layers and text >> >> >> >> >> >> Show me with code what you mean! >> >> >> >> obj = dynapi.document.addChild( new DynLayer() ) >> >> Etc... >> >> >> >> >> >> I usually can fix mac things >> >> Michael >> >> >> >> >> >> >> >> Den 03-10-10 08.05, skrev "Daniel Tiru" >> <de...@ti...>: >> >> >> >>> Hello developers! >> >>> >> >>> I would need yor expertice right now... >> >>> >> >>> I have found something, maybee its by design in >> some way, but i >> >>> doubt >> > >> >>> it. >> >>> >> >>> If you add text to a layer, and add a event >> listner to the layer, >> >>> say >> > >> >>> on mouseover and you change layer no2 bgcolor. >> >>> >> >>> If you add a layer over the textlayer, make it >> transparant and >> >>> change >> > >> >>> the event listner to listen to mouseover on the >> new layer you will >> >>> notice that when you move your mouse over the >> text of the >> >>> bottomlayer >> > >> >>> no onmouseover event will be sent. However if >> you move your mose >> >>> outside the text it will. This is fixed by set >> the top layer to show >> >> >>> a >> >> >> >>> color, thought... the problem is then that you >> wont see the text :) >> >>> So >> >> >> >>> you have to add a transparent gif. >> >>> >> >>> So now you will tell me, skip the top layer and >> it will work fine!? >> >>> Yepp, if using windows and ie (havent tried alot >> so far) its working >> >> >>> fine. If using IE on Mac it dont. :( The default >> for > === message truncated === > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Raymond I. <xw...@ya...> - 2003-10-13 14:42:45
|
See also: dynapi.api.dynlayer-relative.html -- Raymond Irving --- Raymond Irving <xw...@ya...> wrote: > > Create the layers as you normally would then use the > dynapi.document.insertChild() function to insert the > relative layers > > See the inline examples inside the examples/ folder > > -- > Raymond Irving > > --- Háber János <bo...@co...> wrote: > > Hi! > > > > I have a little problem. > > I have example these code: > > <table border=0 celladding=0 cellspacing=0 > > align="center" width="80%"> > > <tr> > > <td align="left"> > > <!-- need stacker one to here --> > > </td> > > <td align="right"> > > <!-- and stacker two to here --> > > </td> > > </tr> > > </table> > > > > And I want to drop 2 stacker with panelbars into > the > > 2 row. How Can I do that? > > (So no absolute , only relative positioning) > > It's possible? > > And If I want to do this for normal layer > (example: > > drop into a table)? > > > > Cow > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback > > Program. > > SourceForge.net hosts over 70,000 Open Source > > Projects. > > See the people who have HELPED US provide better > > services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product > search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. > See the people who have HELPED US provide better > services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-13 14:37:08
|
Well for the record we will just use ondrop since that's the one I started using inside the demos. -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Not a bad solution. > > I think tought, that it would be called > ondragdroped? > Atleast we should use ondragdrop, as you when > pressing, activating the > drag movement. If you dont move it (atleast in > windows) it will become a > dragdrop. > > /Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Raymond > Irving > Sent: den 10 oktober 2003 22:54 > To: dyn...@li... > Subject: RE: [Dynapi-Dev] Change ondrop to > ondragdrop > > > > Ok I see your point. Maybe we should trigger > ondragdrop on the layer that's being dragged and > dropped and trigger ondrop on the layer receiving > the > drop, correct? Or should we just use ondrop for > both? > > -- > Raymond Irving > > > --- Daniel Tiru <de...@ti...> wrote: > > Hi Raymond! > > > > I dont know really... I think both sounds good, > but > > as you realy dont > > have to drag it, it could be ondrop, but if you > drag > > it, it would be > > ondragdrop. So.. Well, can you explain what you > did > > wrong? Then i will > > tell you if you are right or wrong. :) > > > > Regards > > Daniel > > > > -----Original Message----- > > From: dyn...@li... > > [mailto:dyn...@li...] On > > Behalf Of Raymond > > Irving > > Sent: den 10 oktober 2003 19:23 > > To: DynAPI-Dev; DynApi-Help > > Subject: [Dynapi-Dev] Change ondrop to ondragdrop > > > > > > Hi Everyone, > > > > I think I've made a mistake with the event names. > In > > keeping with ondragstart, ondragmove, ondragend, > > ondragover we should change ondrop to ondragdrop > > > > Everyone in agreement? > > > > PS. Some newer changes are coming that enable you > to > > do some great drag and drop features that is not > > easy > > to do without DynAPI :) > > > > > > -- > > Raymond Irving. > > > > > > __________________________________ > > Do you Yahoo!? > > The New Yahoo! Shopping - with improved product > > search > > http://shopping.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback > > Program. > > SourceForge.net hosts over 70,000 Open Source > > Projects. See the people > > who have HELPED US provide better services: Click > > here: > > http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback > > Program. > > SourceForge.net hosts over 70,000 Open Source > > Projects. > > See the people who have HELPED US provide better > > services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product > search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. See the people > who have HELPED US provide better services: Click > here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. > See the people who have HELPED US provide better > services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |