[Proto-Scripty] Re: MySQL - order ID

2009-07-04 Thread WLQ
But anyway, there is still something wrong with the self javascript, as the item created freezes (you can't drag it after the clone) I use the classname clone to hook the javascript to later, you can   call these whatever you like, just be sure you tidy up and make   everything match on the

[Proto-Scripty] Simple effects queuing help!!

2009-07-04 Thread Kronprinz
I have an Image with the id of 'img1'. When I click on it I want to fire a function called animate(). I'm trying to queue up some effects to get img1 to animate in the following manner: 1- Squish in to the top left-corner (http://wiki.github.com/madrobby/ scriptaculous/effect-squish) 2-

[Proto-Scripty] Re: Simple effects queuing help!!

2009-07-04 Thread T.J. Crowder
Hi, I don't think effects queues will help you with this (unless someone's written a script.aculo.us effect that changes the src of an image -- which someone may very well have done). I see two choices: 1. Find or write a script.aculo.us effect that changes the src of an image. I'd recommend

[Proto-Scripty] Re: getWidth() on dynamic created element does not work

2009-07-04 Thread i...@mm-newmedia.de
You were right. I was checking to early. Like in the W3C Recommendation mentioned, I added a DomNodeInserted EventListener to get the full width for the div container. Here's the result: // event listener for all inserted nodes var maxWidth = 0;

[Proto-Scripty] Ajax.Updater in Mozilla 1.6

2009-07-04 Thread Siddhartha Banik
Hi, I am using Ajax.Updater with : onFailure, onSuccess and onComplete callback methods. In onSuccess method, I am checking for transport.status value. That value is returned as 0 if connection with server is lost. So appropriately I am showing connection lost message. Now the problem I am

[Proto-Scripty] Re: Ajax.Updater in Mozilla 1.6

2009-07-04 Thread T.J. Crowder
Hi, Now the problem I am facing is, In Mozilla 1.6... Mozilla 1.6? Apologies if I have the wrong end of the stick, but do you mean v1.6 of the Mozilla Suite? That was obsoleted (by v1.7) more than five years ago, and the project has been completely discontinued, with the last release being

[Proto-Scripty] Re: Ajax.Updater in Mozilla 1.6

2009-07-04 Thread Siddhartha Banik
Yes, I am talking about Mozilla Suite v1.6 only. Agreed 1.6 is old enough, but the application we are building.. need to support our existing customers[Healthcare Domain].. many are using Mozilla 1.6. Considering complexities involved with upgrading all of them, we have preferred to make our

[Proto-Scripty] Re: Ajax.Updater in Mozilla 1.6

2009-07-04 Thread Siddhartha Banik
One more addition to above: Prototype.js is working well with Mozilla 1.7 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to

[Proto-Scripty] Re: Inheritance issue.

2009-07-04 Thread Tobie Langel
HI, In the pattern you are using, `privateMember` is a static or class property. It is _shared_ between all instances of the same class, hence what you observed above. If you want true privacy, you'll need the following: var MySuperclass = Class.create({ initialize : function(value) {

[Proto-Scripty] Re: Form.request() file upload problem in ie6

2009-07-04 Thread Miguel Beltran R.
2009/7/3 Alex McAuley webmas...@thecarmarketplace.com Ajax request will not send files :S Sorry! how make then gmail? When I add a attachment, after a seconds gmail show me what is uploaded --~--~-~--~~~---~--~~ You received this message because you are

[Proto-Scripty] Re: bug? or I made something wrong using fire

2009-07-04 Thread Miguel Beltran R.
2009/6/27 T.J. Crowder t...@crowdersoftware.com I've written up a couple of things about closures that may be helpful, and specifically that walk you through this business of references vs. values: http://blog.niftysnippets.org/2008/02/closures-are-not-complicated.html