[Rails-spinoffs] Retrieve a property defined in a css

2006-02-16 Thread Nicolas Terray
Hi all,

I have a property, defined in an external stylesheet:

.my_class {
   background-color: #FF;
}


I want to retrieve the value of this background-color of the class my_class.

How can I do that with prototype/scriptaculous ?

Thanks in advance,
Nicolas Terray
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] Draggables and overflow:auto

2006-02-16 Thread Chris Lear
* Ryan Gahl wrote (15/02/2006 22:32):
> Nah, I've only ever just submitted my optimizations in isolation to this
> list (only a couple times so far)... seems like Thomas has his hands
> full though since he's not yet responded to any of my suggestions.

In case you're feeling unappreciated... I've been following the progress
of dragdrop.js carefully, and I've been incorporating your patches
because I'm working on an application using potentially a lot of
draggables and droppables. I've also been trying to get the recent
clever scrolling code to work. Without success so far sadly (the demo
works, but my implementation doesn't), but I can manage without the
scrolling for the time being.

Chris
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


[Rails-spinoffs] Re: Retrieve a property defined in a css

2006-02-16 Thread Nicolas Terray
On 2/16/06, Nicolas Terray <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I have a property, defined in an external stylesheet:
>
> .my_class {
>background-color: #FF;
> }
>
>
> I want to retrieve the value of this background-color of the class my_class.
>
> How can I do that with prototype/scriptaculous ?
>
> Thanks in advance,
> Nicolas Terray
>

I've just found this script:
---8<-
function getStyleClass (className) {
  var re = new RegExp("\\." + className + "$", "gi");
  if (document.all) {
for (var s = 0; s < document.styleSheets.length; s++)
  for (var r = 0; r < document.styleSheets[s].rules.length; r++)
if (document.styleSheets[s].rules[r].selectorText.search(re)
!= -1) {
  return document.styleSheets[s].rules[r].style;
}
  }
  else if (document.getElementById) {
for (var s = 0; s < document.styleSheets.length; s++)
  for (var r = 0; r < document.styleSheets[s].cssRules.length; r++)
if (document.styleSheets[s].cssRules[r].selectorText.search
(re) != -1) {
  document.styleSheets[s].cssRules[r].sheetIndex = s;
  document.styleSheets[s].cssRules[r].ruleIndex = s;
  return document.styleSheets[s].cssRules[r].style;
}
  }
  else if (document.layers)
return document.classes[className].all;
  return null;
}
function getStyleClassProperty (className, propertyName) {
  var styleClass = getStyleClass(className);
  if (styleClass)
return styleClass[propertyName];
  else
return null;
}
---8<-
http://www.faqts.com/knowledge_base/view.phtml/aid/1939/fid/255

It works pretty find on Fx 1.0.7 and IE6 however I don't understand
all in this script.
What does those lines mean :
  document.styleSheets[s].cssRules[r].sheetIndex = s;
  document.styleSheets[s].cssRules[r].ruleIndex = s;
???

As javascript experts, could you tell me if this script is correct,
not too old and unoptimizable ?

Anyways, other suggestions are welcome!

Thanks,
Nicolas Terray
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


RE: [Rails-spinoffs] Re: Retrieve a property defined in a css

2006-02-16 Thread SPENDLOVE, Matt, FM
You can use Element.getStyle() in later versions of prototype.js
.

Best

Matt

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Nicolas Terray
> Sent: 16 February 2006 09:59
> To: rails-spinoffs@lists.rubyonrails.org
> Subject: [Rails-spinoffs] Re: Retrieve a property defined in a css
> 
> 
> On 2/16/06, Nicolas Terray <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > I have a property, defined in an external stylesheet:
> >
> > .my_class {
> >background-color: #FF;
> > }
> >
> >
> > I want to retrieve the value of this background-color of the class 
> > my_class.
> >
> > How can I do that with prototype/scriptaculous ?
> >
> > Thanks in advance,
> > Nicolas Terray
> >
> 
> I've just found this script:
> ---8<-
> function getStyleClass (className) {
>   var re = new RegExp("\\." + className + "$", "gi");
>   if (document.all) {
> for (var s = 0; s < document.styleSheets.length; s++)
>   for (var r = 0; r < document.styleSheets[s].rules.length; r++)
> if (document.styleSheets[s].rules[r].selectorText.search(re)
> != -1) {
>   return document.styleSheets[s].rules[r].style;
> }
>   }
>   else if (document.getElementById) {
> for (var s = 0; s < document.styleSheets.length; s++)
>   for (var r = 0; r < 
> document.styleSheets[s].cssRules.length; r++)
> if (document.styleSheets[s].cssRules[r].selectorText.search
> (re) != -1) {
>   document.styleSheets[s].cssRules[r].sheetIndex = s;
>   document.styleSheets[s].cssRules[r].ruleIndex = s;
>   return document.styleSheets[s].cssRules[r].style;
> }
>   }
>   else if (document.layers)
> return document.classes[className].all;
>   return null;
> }
> function getStyleClassProperty (className, propertyName) {
>   var styleClass = getStyleClass(className);
>   if (styleClass)
> return styleClass[propertyName];
>   else
> return null;
> }
> ---8<- 
> http://www.faqts.com/knowledge_base/view.phtml/aid/1939/fid/255
> 
> It works pretty find on Fx 1.0.7 and IE6 however I don't 
> understand all in this script. What does those lines mean :
>   document.styleSheets[s].cssRules[r].sheetIndex = s;
>   document.styleSheets[s].cssRules[r].ruleIndex = s; ???
> 
> As javascript experts, could you tell me if this script is 
> correct, not too old and unoptimizable ?
> 
> Anyways, other suggestions are welcome!
> 
> Thanks,
> Nicolas Terray
> ___
> Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org
> http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
> 


***
The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered 
Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
Authorized and regulated by the Financial Services Authority 
 
This e-mail message is confidential and for use by the 
addressee only. If the message is received by anyone other 
than the addressee, please return the message to the sender 
by replying to it and then delete the message from your 
computer. Internet e-mails are not necessarily secure. The 
Royal Bank of Scotland plc does not accept responsibility for 
changes made to this message after it was sent. 

Whilst all reasonable care has been taken to avoid the 
transmission of viruses, it is the responsibility of the recipient to 
ensure that the onward transmission, opening or use of this 
message and any attachments will not adversely affect its 
systems or data. No responsibility is accepted by The Royal 
Bank of Scotland plc in this regard and the recipient should carry 
out such virus and other checks as it considers appropriate. 
Visit our websites at: 
http://www.rbos.com
http://www.rbsmarkets.com 


___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


[Rails-spinoffs] cancelling droppable if draggable dropped on different droppable

2006-02-16 Thread Rob Clayburn


  I'm writing a web app in which I have several 'windows' in which the 
  user can perform given functionality.


  So for example I have one window which manages images on a server (drag 
  an image into a folder and the file physically moved on the server via 
  ajax ) These images can also be dragged into another window to create a 
  slideshow.


  My problem occurs if my image manager window is positioned over my 
  slideshow window. When I try to drag an image into a new folder and the 
  folder icon (which is a droppable) is located above the slideshow window 
  (again a droppable) both dcroppables receive the event.


  How can I ensure that the droppable with the greatest zindex receives 
  the drop first and then how can I ensure that the event is not passed to 
  the droppable below?


Or alternatively how can I ensure that a droppable is only activated if my 
dragable is dropped out side of my image manager window?

  Many thanks
  Rob


--
e: [EMAIL PROTECTED]
w: www.pollen-8.co.uk
t uk: 0871 218 0278
t fr: 00 33 (0) 5 46 34 31 20
skype: rob_clayburn



___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] Re: Retrieve a property defined in a css

2006-02-16 Thread Nicolas Terray
On 2/16/06, SPENDLOVE, Matt, FM <[EMAIL PROTECTED]> wrote:
> You can use Element.getStyle() in later versions of prototype.js
> .
>
> Best
>
> Matt
>

Thanks for your fast answer.
However, Element.getStyle does not feed my needs, because I have no
elements with this class. In fact I want to be able to customize the
yellow fade (Effect.Highlight) with css. Therefore I want to do :
new Effect.Highlight(element, {startcolor:
value_of_a_property_in_a_css_class });

Thanks,
Nicolas
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] cancelling droppable if draggable dropped on different droppable

2006-02-16 Thread Rob Clayburn

Rob Clayburn wrote:



Or alternatively how can I ensure that a droppable is only activated 
if my dragable is dropped out side of my image manager window?


  Many thanks
  Rob



To answer my own question I made each window a greedy droppable object.

Cheers
Rob
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


[Rails-spinoffs] javascript node with Ajax.Updater

2006-02-16 Thread Francisco Calderon
Hi there, im having a problem with the Ajax.Updater, im using the
Ajax.Updater to get an divider, inside the div i have a _javascript_ node
that i use to do _javascript_ stuff, the problem is when i get the
divider i get whole the html but not the _javascript_ node, thats a bug? anybody know what's happening?--    Ing. Francisco J. Calderón S.
//   [EMAIL PROTECTED]//   Usuario de GNU/Linux  nº 349529//   Maracay, Venezuela//
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] cancelling droppable if draggable dropped on different droppable

2006-02-16 Thread Nicolas Terray
On 2/16/06, Rob Clayburn <[EMAIL PROTECTED]> wrote:
> Rob Clayburn wrote:
> >
> >
> > Or alternatively how can I ensure that a droppable is only activated
> > if my dragable is dropped out side of my image manager window?
> >
> >   Many thanks
> >   Rob
> >
> >
> To answer my own question I made each window a greedy droppable object.
>

Could you explain please ? I don't really understand this greedy option :/
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] javascript node with Ajax.Updater

2006-02-16 Thread Michael Peters


Francisco Calderon wrote:
> Hi there, im having a problem with the Ajax.Updater, im using the
> Ajax.Updater to get an divider, inside the div i have a javascript node
> that i use to do javascript stuff, the problem is when i get the divider
> i get whole the html but not the javascript node, thats a bug?
> *anybody know what's happening?*

Are you setting the 'evalScripts' option to true?

-- 
Michael Peters
Developer
Plus Three, LP

___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] cancelling droppable if draggable dropped on different droppable

2006-02-16 Thread Rob Clayburn





Could you explain please ? I don't really understand this greedy option :/
_
  
if a dropables greedy is set to true then any other dropable under it 
will not know that a dropable has been dropped on it.


For my case making the window a greedy dropable meant that you now have 
to drag the dragable outside its window for dropables underneath the 
window to react when to the drop.

___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] javascript node with Ajax.Updater

2006-02-16 Thread Francisco Calderon
thanks!!! with evalscripts works =D

hosnestly i didn't know about evalscript, thanks a lot2006/2/16, Michael Peters <[EMAIL PROTECTED]>:
Francisco Calderon wrote:> Hi there, im having a problem with the Ajax.Updater, im using the> Ajax.Updater to get an divider, inside the div i have a _javascript_ node> that i use to do _javascript_ stuff, the problem is when i get the divider
> i get whole the html but not the _javascript_ node, thats a bug?> *anybody know what's happening?*Are you setting the 'evalScripts' option to true?--Michael PetersDeveloperPlus Three, LP
___Rails-spinoffs mailing listRails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs--    Ing. Francisco J. Calderón S.//   [EMAIL PROTECTED]
//   Usuario de GNU/Linux  nº 349529//   Maracay, Venezuela//
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


RE: [Rails-spinoffs] Draggables and overflow:auto

2006-02-16 Thread Ryan Gahl
I apologize, people, for my comment. I'm not feeling unappreciated. On
the contrary, I'm just glad I can contribute anything (even if just in
posts to this list), and I sincerely think Thomas and the other devs
like Mandy just have their hands full.

Yea, I re-read my post after I sent it and kind of thought it might be
taken overly negatively... my bad... 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chris
Lear
Sent: Thursday, February 16, 2006 3:54 AM
To: rails-spinoffs@lists.rubyonrails.org
Subject: Re: [Rails-spinoffs] Draggables and overflow:auto

* Ryan Gahl wrote (15/02/2006 22:32):
> Nah, I've only ever just submitted my optimizations in isolation to
this
> list (only a couple times so far)... seems like Thomas has his hands
> full though since he's not yet responded to any of my suggestions.

In case you're feeling unappreciated... I've been following the progress
of dragdrop.js carefully, and I've been incorporating your patches
because I'm working on an application using potentially a lot of
draggables and droppables. I've also been trying to get the recent
clever scrolling code to work. Without success so far sadly (the demo
works, but my implementation doesn't), but I can manage without the
scrolling for the time being.

Chris
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.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@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


[Rails-spinoffs] Blind effect and tables

2006-02-16 Thread Scott Walter
Greetings,I am trying to add a row to a table using the blind down effect.  I have this working for lists (aka ) but not tables.  With tables it seems to display the newly inserted row then blind.  I basically want to start with the row hidden and then blind down.  For example this works with lists:    scott was here    fred was here  click However the same thing with a table does not produce the same
 effect:    scottwalter    scottwalter      click  With the list version the row will be hidden and then blind down to have an fluid effect.  With the table it will show the row then blind down.  Any ideas?cheers, scott. What's an Intel chip doing in a Mac? A whole lor more that it's ever done in a PC.My Digital Life - http://scottwalter.com/blogPro:Blog - http://scottwalter.com/problog___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


[Rails-spinoffs] Autocompleter question

2006-02-16 Thread Joseph Potenza



Hey 
all,
    
When using the Ajax.autocompleter, how would I configure it so that the user is 
searching based on an entry's name, but once they select an entry, I record the 
ID?
 
    I 
have the user entering a person's name in a text box to make it easier to find 
contacts in a large database.  I know that I can display content that 
doesn't end up in the textbox by using the "informal" class, but how can I 
associate the contact's ID with the LI item and have that value be recorded into 
a hidden field when selected?
 
    
Is there an easier way than just putting a hidden, non-standard "contactId" 
attribute on my LI tags and then using the afterUpdateElement 
option?
 
Thanks in 
advance,
Joe


 
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] Autocompleter question

2006-02-16 Thread Nicolas
Hi,You can play with  which will be displayed, but not selected and  which won't be displayed, but selected.You can do pretty much everything with that, so you won't need to moidfy autocompleter code.
Reagrds,NicoOn 2/16/06, Joseph Potenza <[EMAIL PROTECTED]> wrote:





Hey 
all,
    
When using the Ajax.autocompleter, how would I configure it so that the user is 
searching based on an entry's name, but once they select an entry, I record the 
ID?
 
    I 
have the user entering a person's name in a text box to make it easier to find 
contacts in a large database.  I know that I can display content that 
doesn't end up in the textbox by using the "informal" class, but how can I 
associate the contact's ID with the LI item and have that value be recorded into 
a hidden field when selected?
 
    
Is there an easier way than just putting a hidden, non-standard "contactId" 
attribute on my LI tags and then using the afterUpdateElement 
option?
 
Thanks in 
advance,
Joe


 

___Rails-spinoffs mailing listRails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


RE: [Rails-spinoffs] Autocompleter question

2006-02-16 Thread Bob Silva
Hi Joe,

Using the afterUpdateElement patch for the Javascript Macro Helper, I do
this using the following code:

function auto_complete_on_select(element, selectedElement)
{
document.getElementById('encounter_client_id').value = 
selectedElement.childNodes.item(0).innerHTML;
}

Which gets called by:

<%= auto_complete_field 'client', :url => {:controller => 'clients', 
:action => 'auto_complete_for_client'},
:after_update_element => 'auto_complete_on_select', :select =>
'name' %>


And my LI looks like this:

#{client.id}#{client.name}

In this case I use the new select class method and older informal style for
BC purposes.

Cheers,

Bob Silva
http://www.railtie.net/



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nicolas
Sent: Thursday, February 16, 2006 11:31 AM
To: rails-spinoffs@lists.rubyonrails.org
Subject: Re: [Rails-spinoffs] Autocompleter question

Hi,

You can play with  which will be displayed, but not
selected and  which won't be displayed, but
selected.

You can do pretty much everything with that, so you won't need to moidfy
autocompleter code. 

Reagrds,
Nico

On 2/16/06, Joseph Potenza <[EMAIL PROTECTED]> wrote:
Hey all,
    When using the Ajax.autocompleter, how would I configure it so that the
user is searching based on an entry's name, but once they select an entry, I
record the ID?
 
    I have the user entering a person's name in a text box to make it easier
to find contacts in a large database.  I know that I can display content
that doesn't end up in the textbox by using the "informal" class, but how
can I associate the contact's ID with the LI item and have that value be
recorded into a hidden field when selected?
 
    Is there an easier way than just putting a hidden, non-standard
"contactId" attribute on my LI tags and then using the afterUpdateElement
option?
 
Thanks in advance,
Joe
 

___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org 
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs



___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


[Rails-spinoffs] Released: window dialog script

2006-02-16 Thread Marco M. Jaeger








Hello,

 

First, please let me thank you to Ryan Gahl and Jerod Venema
for their patient help – really appreciated their input – I couldn’t
have done this script without their support.

 

Today I released a dialog script based on scriptaculous and
prototype. A demo can be seen here: http://net4visions.com/dev/dialog/dialog.htm
 Please see the readme and changelog file for details. Your input and code
optimization is appreciated.

 

 

The dialog script can be downloaded from here: http://www.net4visions.com/dev/downloads/dialog.zip







___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


Re: [Rails-spinoffs] Released: window dialog script

2006-02-16 Thread David Zülke

Very sweet. Doesn't work in Safari, though :(

- David


Am 17.02.2006 um 08:20 schrieb Marco M. Jaeger:


Hello,



First, please let me thank you to Ryan Gahl and Jerod Venema for  
their patient help – really appreciated their input – I couldn’t  
have done this script without their support.




Today I released a dialog script based on scriptaculous and  
prototype. A demo can be seen here: http://net4visions.com/dev/ 
dialog/dialog.htm Please see the readme and changelog file for  
details. Your input and code optimization is appreciated.






The dialog script can be downloaded from here: http:// 
www.net4visions.com/dev/downloads/dialog.zip


___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


RE: [Rails-spinoffs] Released: window dialog script

2006-02-16 Thread Maninder, Singh



Sweet!
 
Are 
you in the process of making any changes?
 
I just 
tested it in IE 6.0 and it worked super!
 
When I 
started checking it in Firefox, I could only move one dialog window...went back 
to IE and same behavior.
 
Let me 
know.
 
Thanks,
Mandy.

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Marco 
  M. JaegerSent: Friday, February 17, 2006 12:51 PMTo: 
  rails-spinoffs@lists.rubyonrails.org; 'Ryan Gahl'; 'Jerod 
  Venema'Subject: [Rails-spinoffs] Released: window dialog 
  script
  
  Hello,
   
  First, please let me thank you to 
  Ryan Gahl and Jerod Venema for their patient help – really appreciated their 
  input – I couldn’t have done this script without their 
  support.
   
  Today I released a dialog script 
  based on scriptaculous and prototype. A demo can be seen here: http://net4visions.com/dev/dialog/dialog.htm 
  Please see the readme and changelog file for details. Your input and code 
  optimization is appreciated.
   
   
  The dialog script can be downloaded from here: http://www.net4visions.com/dev/downloads/dialog.zip 
  
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs


RE: [Rails-spinoffs] Released: window dialog script

2006-02-16 Thread Maninder, Singh



Oh!! 
Scratch that!
 
It was 
a dialog window. When I closed it, it started working 
fine..Sorry!
 
Works 
cool in Firefox 1.5.0.1 & IE 6.0.
 
Thanks,Mandy.

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of 
  Maninder, SinghSent: Friday, February 17, 2006 1:25 
  PMTo: [EMAIL PROTECTED]; rails-spinoffs@lists.rubyonrails.org; Ryan 
  Gahl; Jerod VenemaSubject: RE: [Rails-spinoffs] Released: window 
  dialog script
  Sweet!
   
  Are 
  you in the process of making any changes?
   
  I 
  just tested it in IE 6.0 and it worked super!
   
  When 
  I started checking it in Firefox, I could only move one dialog window...went 
  back to IE and same behavior.
   
  Let 
  me know.
   
  Thanks,
  Mandy.
  
-Original Message-From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]On Behalf Of 
Marco M. JaegerSent: Friday, February 17, 2006 12:51 
PMTo: rails-spinoffs@lists.rubyonrails.org; 'Ryan Gahl'; 'Jerod 
Venema'Subject: [Rails-spinoffs] Released: window dialog 
script

Hello,
 
First, please let me thank you 
to Ryan Gahl and Jerod Venema for their patient help – really appreciated 
their input – I couldn’t have done this script without their 
support.
 
Today I released a dialog script 
based on scriptaculous and prototype. A demo can be seen here: http://net4visions.com/dev/dialog/dialog.htm 
Please see the readme and changelog file for details. Your input and code 
optimization is appreciated.
 
 
The dialog script can be downloaded from here: http://www.net4visions.com/dev/downloads/dialog.zip 

___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs