Hello I have been working on a little window dialog script - please see <http://net4visions.com/dev/window/window.htm> http://net4visions.com/dev/window/window.htm for a preview. the necessary files can be downloaded here: <http://net4visions.com/dev/window/window.zip> http://net4visions.com/dev/window/window.zip .I''ve included just the basics - please change the path in the window.html file to your scriptaculous and prototype installation to make it work. While the script seems to work fine in Firefox 1.5 on windows, I''m having problems to get it to work in IE - minimizing/maximizing as well as closing the window works - it''s just the resizing that makes some problems in IE. I would very much appreciate if somebody could have a look at the code and hopefully with joined forces we will be able to make it work. In general, I think this would make a nice and much needed addition to scriptaculous. Thank you in advance for your help. _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Got it... I simply used a draggable with an "onDrag" observer. Do a side by side comparison to see what I changed. You may want to try to tweak it just a bit as the image positioning gets a pixel or 2 off centered after the drag is done. You should be able to get that fixed easily just by setting the image positioning on drag end... I''ll leave that part for you =). My changed file is attached... -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Marco M. Jaeger Sent: Monday, January 16, 2006 3:29 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] resizable window/div - some help needed Thank you Matthias, I''ll give it a try - still wondering why it''s basically working in Firefox?>From: Matthias Platzer <matthias-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> >Reply-To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Subject: Re: [Rails-spinoffs] resizable window/div - some help needed >Date: Mon, 16 Jan 2006 22:08:53 +0100 >MIME-Version: 1.0 >Received: from wrath.rubyonrails.com ([70.84.143.100]) by >bay0-mc12-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.211);Mon, 16>Jan 2006 13:09:29 -0800 >Received: from 109.70-84-143.reverse.theplanet.com >(localhost.rubyonrails.org [127.0.0.1])by wrath.rubyonrails.com(Postfix)>with ESMTP id 2E6183A091;Mon, 16 Jan 2006 21:08:58 +0000 (GMT) >Received: from smartmx-03.inode.at (smartmx-03.inode.at[213.229.60.35])by>wrath.rubyonrails.com (Postfix) with ESMTP id 9868839F91for ><rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org>;Mon, 16 Jan 2006 21:08:54 +0000 >(GMT) >Received: from [62.99.202.58] (port=34164 helo=[192.168.0.126])by >smartmx-03.inode.at with esmtpa (Exim 4.50) id 1Eybau-0003Og-Erfor >rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org;Mon, 16 Jan 2006 22:08:52 +0100 >X-Message-Info: KtxBqYfPyq1u7TEtrhBN1+8h8qOaosDgwzanosjYVfM>User-Agent: Thunderbird 1.5 (Windows/20051201) >References: <43CC02FB.8020205-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> <43CC0477.2010708-Qt13gs6zZMY@public.gmane.org> >X-BeenThere: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-Mailman-Version: 2.1.5 >Precedence: list >List-Id: rails-spinoffs.lists.rubyonrails.org >List-Unsubscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=unsubscribe>>List-Archive: <http://wrath.rubyonrails.org/pipermail/rails-spinoffs> >List-Post: <mailto:rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org> >List-Help: ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=help> >List-Subscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=subscribe> >Errors-To: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Return-Path: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-OriginalArrivalTime: 16 Jan 2006 21:09:30.0153 (UTC) >FILETIME=[240E7990:01C61AE1] > > >Hi Marco, > >the problem is, that the image that you use as an indicator for theresize>effect starts to drag. so i found two possible solutions: > >1) stop the drag event: >line 96ff: > >if (this.options.resize) { > this.resizeHandle.onmousedown > this.initResize.bindAsEventListener(this); > this.resizeHandle.ondragstart = function(evt) {return false;}; >} else { > Element.hide(this.resizeHandle); >} > >-> this is still not perfect, because i repeatingly see the sand-clock >icon, because ie seems to be busy with something. > >2) don''t use an image as the indicator. >instead you could use a div, with a background-image. > > >btw: >very cool script! keep on reporting about your progress. > >matthias >_______________________________________________ >Rails-spinoffs mailing list >Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs_________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it''s FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs The information transmitted in this electronic mail is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers. _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
(Sorry to spam the list... zipped the file this time to get past email monsters) Got it... I simply used a draggable with an "onDrag" observer. Do a side by side comparison to see what I changed. You may want to try to tweak it just a bit as the image positioning gets a pixel or 2 off centered after the drag is done. You should be able to get that fixed easily just by setting the image positioning on drag end... I''ll leave that part for you =). My changed file is attached... -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Marco M. Jaeger Sent: Monday, January 16, 2006 3:29 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] resizable window/div - some help needed Thank you Matthias, I''ll give it a try - still wondering why it''s basically working in Firefox?>From: Matthias Platzer <matthias-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> >Reply-To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Subject: Re: [Rails-spinoffs] resizable window/div - some help needed >Date: Mon, 16 Jan 2006 22:08:53 +0100 >MIME-Version: 1.0 >Received: from wrath.rubyonrails.com ([70.84.143.100]) by >bay0-mc12-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.211);Mon, 16>Jan 2006 13:09:29 -0800 >Received: from 109.70-84-143.reverse.theplanet.com >(localhost.rubyonrails.org [127.0.0.1])by wrath.rubyonrails.com(Postfix)>with ESMTP id 2E6183A091;Mon, 16 Jan 2006 21:08:58 +0000 (GMT) >Received: from smartmx-03.inode.at (smartmx-03.inode.at[213.229.60.35])by>wrath.rubyonrails.com (Postfix) with ESMTP id 9868839F91for ><rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org>;Mon, 16 Jan 2006 21:08:54 +0000 >(GMT) >Received: from [62.99.202.58] (port=34164 helo=[192.168.0.126])by >smartmx-03.inode.at with esmtpa (Exim 4.50) id 1Eybau-0003Og-Erfor >rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org;Mon, 16 Jan 2006 22:08:52 +0100 >X-Message-Info: KtxBqYfPyq1u7TEtrhBN1+8h8qOaosDgwzanosjYVfM>User-Agent: Thunderbird 1.5 (Windows/20051201) >References: <43CC02FB.8020205-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> <43CC0477.2010708-Qt13gs6zZMY@public.gmane.org> >X-BeenThere: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-Mailman-Version: 2.1.5 >Precedence: list >List-Id: rails-spinoffs.lists.rubyonrails.org >List-Unsubscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=unsubscribe>>List-Archive: <http://wrath.rubyonrails.org/pipermail/rails-spinoffs> >List-Post: <mailto:rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org> >List-Help: ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=help> >List-Subscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=subscribe> >Errors-To: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Return-Path: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-OriginalArrivalTime: 16 Jan 2006 21:09:30.0153 (UTC) >FILETIME=[240E7990:01C61AE1] > > >Hi Marco, > >the problem is, that the image that you use as an indicator for theresize>effect starts to drag. so i found two possible solutions: > >1) stop the drag event: >line 96ff: > >if (this.options.resize) { > this.resizeHandle.onmousedown > this.initResize.bindAsEventListener(this); > this.resizeHandle.ondragstart = function(evt) {return false;}; >} else { > Element.hide(this.resizeHandle); >} > >-> this is still not perfect, because i repeatingly see the sand-clock >icon, because ie seems to be busy with something. > >2) don''t use an image as the indicator. >instead you could use a div, with a background-image. > > >btw: >very cool script! keep on reporting about your progress. > >matthias >_______________________________________________ >Rails-spinoffs mailing list >Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs_________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it''s FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs The information transmitted in this electronic mail is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers. _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Also... you''ll need to do something to constrain the draggable so you can''t move it above the top of the window, etc... I would (and might eventually) do it all, but I''m quite busy with work. -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Ryan Gahl Sent: Monday, January 16, 2006 3:33 PM To: mail-yVS5avHIROZWk0Htik3J/w@public.gmane.org; rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: RE: [Rails-spinoffs] resizable window/div - some help needed (Sorry to spam the list... zipped the file this time to get past email monsters) Got it... I simply used a draggable with an "onDrag" observer. Do a side by side comparison to see what I changed. You may want to try to tweak it just a bit as the image positioning gets a pixel or 2 off centered after the drag is done. You should be able to get that fixed easily just by setting the image positioning on drag end... I''ll leave that part for you =). My changed file is attached... -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Marco M. Jaeger Sent: Monday, January 16, 2006 3:29 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] resizable window/div - some help needed Thank you Matthias, I''ll give it a try - still wondering why it''s basically working in Firefox?>From: Matthias Platzer <matthias-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> >Reply-To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Subject: Re: [Rails-spinoffs] resizable window/div - some help needed >Date: Mon, 16 Jan 2006 22:08:53 +0100 >MIME-Version: 1.0 >Received: from wrath.rubyonrails.com ([70.84.143.100]) by >bay0-mc12-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.211);Mon, 16>Jan 2006 13:09:29 -0800 >Received: from 109.70-84-143.reverse.theplanet.com >(localhost.rubyonrails.org [127.0.0.1])by wrath.rubyonrails.com(Postfix)>with ESMTP id 2E6183A091;Mon, 16 Jan 2006 21:08:58 +0000 (GMT) >Received: from smartmx-03.inode.at (smartmx-03.inode.at[213.229.60.35])by>wrath.rubyonrails.com (Postfix) with ESMTP id 9868839F91for ><rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org>;Mon, 16 Jan 2006 21:08:54 +0000 >(GMT) >Received: from [62.99.202.58] (port=34164 helo=[192.168.0.126])by >smartmx-03.inode.at with esmtpa (Exim 4.50) id 1Eybau-0003Og-Erfor >rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org;Mon, 16 Jan 2006 22:08:52 +0100 >X-Message-Info: KtxBqYfPyq1u7TEtrhBN1+8h8qOaosDgwzanosjYVfM>User-Agent: Thunderbird 1.5 (Windows/20051201) >References: <43CC02FB.8020205-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> <43CC0477.2010708-Qt13gs6zZMY@public.gmane.org> >X-BeenThere: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-Mailman-Version: 2.1.5 >Precedence: list >List-Id: rails-spinoffs.lists.rubyonrails.org >List-Unsubscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=unsubscribe>>List-Archive: <http://wrath.rubyonrails.org/pipermail/rails-spinoffs> >List-Post: <mailto:rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org> >List-Help: ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=help> >List-Subscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=subscribe> >Errors-To: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Return-Path: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-OriginalArrivalTime: 16 Jan 2006 21:09:30.0153 (UTC) >FILETIME=[240E7990:01C61AE1] > > >Hi Marco, > >the problem is, that the image that you use as an indicator for theresize>effect starts to drag. so i found two possible solutions: > >1) stop the drag event: >line 96ff: > >if (this.options.resize) { > this.resizeHandle.onmousedown > this.initResize.bindAsEventListener(this); > this.resizeHandle.ondragstart = function(evt) {return false;}; >} else { > Element.hide(this.resizeHandle); >} > >-> this is still not perfect, because i repeatingly see the sand-clock >icon, because ie seems to be busy with something. > >2) don''t use an image as the indicator. >instead you could use a div, with a background-image. > > >btw: >very cool script! keep on reporting about your progress. > >matthias >_______________________________________________ >Rails-spinoffs mailing list >Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs_________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it''s FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs The information transmitted in this electronic mail is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers.
Sorry! Last one on this subject... it''s just a cool script by M. Jaeger and I want my contributions to be good... In my changes, I think the "onDrag" handler should be changed to "onStart"... that way it''s not quite so processing-heavy (it will only be fired once per resize operation vs. with every single mouseMove event). The only difference really is that you''d circumvent a bunch of "if" statements where this.resizing == true. -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Ryan Gahl Sent: Monday, January 16, 2006 3:57 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: RE: [Rails-spinoffs] resizable window/div - some help needed Also... you''ll need to do something to constrain the draggable so you can''t move it above the top of the window, etc... I would (and might eventually) do it all, but I''m quite busy with work. -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Ryan Gahl Sent: Monday, January 16, 2006 3:33 PM To: mail-yVS5avHIROZWk0Htik3J/w@public.gmane.org; rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: RE: [Rails-spinoffs] resizable window/div - some help needed (Sorry to spam the list... zipped the file this time to get past email monsters) Got it... I simply used a draggable with an "onDrag" observer. Do a side by side comparison to see what I changed. You may want to try to tweak it just a bit as the image positioning gets a pixel or 2 off centered after the drag is done. You should be able to get that fixed easily just by setting the image positioning on drag end... I''ll leave that part for you =). My changed file is attached... -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Marco M. Jaeger Sent: Monday, January 16, 2006 3:29 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] resizable window/div - some help needed Thank you Matthias, I''ll give it a try - still wondering why it''s basically working in Firefox?>From: Matthias Platzer <matthias-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> >Reply-To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Subject: Re: [Rails-spinoffs] resizable window/div - some help needed >Date: Mon, 16 Jan 2006 22:08:53 +0100 >MIME-Version: 1.0 >Received: from wrath.rubyonrails.com ([70.84.143.100]) by >bay0-mc12-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.211);Mon, 16>Jan 2006 13:09:29 -0800 >Received: from 109.70-84-143.reverse.theplanet.com >(localhost.rubyonrails.org [127.0.0.1])by wrath.rubyonrails.com(Postfix)>with ESMTP id 2E6183A091;Mon, 16 Jan 2006 21:08:58 +0000 (GMT) >Received: from smartmx-03.inode.at (smartmx-03.inode.at[213.229.60.35])by>wrath.rubyonrails.com (Postfix) with ESMTP id 9868839F91for ><rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org>;Mon, 16 Jan 2006 21:08:54 +0000 >(GMT) >Received: from [62.99.202.58] (port=34164 helo=[192.168.0.126])by >smartmx-03.inode.at with esmtpa (Exim 4.50) id 1Eybau-0003Og-Erfor >rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org;Mon, 16 Jan 2006 22:08:52 +0100 >X-Message-Info: KtxBqYfPyq1u7TEtrhBN1+8h8qOaosDgwzanosjYVfM>User-Agent: Thunderbird 1.5 (Windows/20051201) >References: <43CC02FB.8020205-jvEZf8eMbRz0+o74n3fu+Q@public.gmane.org> <43CC0477.2010708-Qt13gs6zZMY@public.gmane.org> >X-BeenThere: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-Mailman-Version: 2.1.5 >Precedence: list >List-Id: rails-spinoffs.lists.rubyonrails.org >List-Unsubscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=unsubscribe>>List-Archive: <http://wrath.rubyonrails.org/pipermail/rails-spinoffs> >List-Post: <mailto:rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org> >List-Help: ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=help> >List-Subscribe: ><http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs>, ><mailto:rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org?subject=subscribe> >Errors-To: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Return-Path: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >X-OriginalArrivalTime: 16 Jan 2006 21:09:30.0153 (UTC) >FILETIME=[240E7990:01C61AE1] > > >Hi Marco, > >the problem is, that the image that you use as an indicator for theresize>effect starts to drag. so i found two possible solutions: > >1) stop the drag event: >line 96ff: > >if (this.options.resize) { > this.resizeHandle.onmousedown > this.initResize.bindAsEventListener(this); > this.resizeHandle.ondragstart = function(evt) {return false;}; >} else { > Element.hide(this.resizeHandle); >} > >-> this is still not perfect, because i repeatingly see the sand-clock >icon, because ie seems to be busy with something. > >2) don''t use an image as the indicator. >instead you could use a div, with a background-image. > > >btw: >very cool script! keep on reporting about your progress. > >matthias >_______________________________________________ >Rails-spinoffs mailing list >Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs_________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it''s FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs The information transmitted in this electronic mail is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers. _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Ryan Gahl wrote:> Sorry! Last one on this subject... it''s just a cool script by M. Jaeger > and I want my contributions to be good... > >Just in case you are interested: I did a windows script with scriptaculous some weeks ago, check it out under http://www.uni-weimar.de/~scheffl2/wordpress/?p=20 Cheers, Martin
Hello Guys, On a side note, I wanted to find out if anyone has worked on a column resizing script? If yes, then I would really appreciate if you would share your code in this forum. Thank you, Mandy.
hey thats real nice, you need to finish the restore button, on firefox, once you maximize a window you can''t restore it! wooyay wrote:> Ryan Gahl wrote: >> Sorry! Last one on this subject... it''s just a cool script by M. Jaeger >> and I want my contributions to be good... >> >> > > Just in case you are interested: > I did a windows script with scriptaculous some weeks ago, check it out > under http://www.uni-weimar.de/~scheffl2/wordpress/?p=20 > Cheers, > Martin > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > >
Jaimz wrote:> hey thats real nice, you need to finish the restore button, on > firefox, once you maximize a window you can''t restore it!Actually I have that implemented now, I just don''t have time to separate the windows stuff from my own app. Maybe in a few days. one problem : Dragging of divs with overflow:scroll is painfully slow on firefox.