[Proto-Scripty] Re: Using Prototype

2010-07-05 Thread T.J. Crowder
Hi, Just generally speaking, but: If you go to the API reference[1], most things in the Language section fall into the category of things Prototype provides that jQuery doesn't. jQuery has $.each, but most of the other stuff in Prototype's Enumerable isn't in jQuery. I _think_ Prototype 1.7

[Proto-Scripty] Problem with cached XML

2010-07-05 Thread mkraai
Hello, Since my previous post, the flickering problem has been fixed by adding a queue for effects. However, now I have a problem with cached XML. Test version: http://vi-devel.nl/caroussel/caroussel.html Pastie of the script: http://pastie.org/1031296 Firebug console returns: 304 Not Modified

[Proto-Scripty] Re: Preventing Autocompleter

2010-07-05 Thread infringer
No takers? I guess there is no way to do this? On Jul 1, 6:51 pm, infringer infrin...@gmail.com wrote: I have an autocompleter on a City field.  But I don't want it to send the request UNLESS the state field is filled in? Any suggestions on how to prevent it from sending the request?  No

Re: [Proto-Scripty] Re: Preventing Autocompleter

2010-07-05 Thread David Behler
I don't think there is a built-in functionaltity for that. But you could edit the autocompleter class and add the check yourself right before the request is done. David Am 05.07.2010 18:54, schrieb infringer: No takers? I guess there is no way to do this? On Jul 1, 6:51 pm,

[Proto-Scripty] Botones personalizados

2010-07-05 Thread caceres
Buenos días a todos, estoy usando prototype para crear ventanas personalizadas, necesito crear un botón personalizado para cerrar la ventana y que se muestre en el lugar de la ventana que yo desee. Estoy embebiendo en la ventana un contenido que se encuentra en una url, y el problema es que al

Re: [Proto-Scripty] Re: Preventing Autocompleter

2010-07-05 Thread Jonathan Snelling
There should be a before or a conditional parameter you can pass. That returns true to continue or false to not send the request. On Monday, July 5, 2010, infringer infrin...@gmail.com wrote: No takers?  I guess there is no way to do this? On Jul 1, 6:51 pm, infringer infrin...@gmail.com

[Proto-Scripty] Re: Botones personalizados

2010-07-05 Thread T.J. Crowder
In English (Español abajo): * * * * (It's best to post to this list in English, you might use http://translate.google.com to help with translation. My Spanish is very outdated, but hopefully with Google's help I can make myself clear.) This code is incorrect, although the error probably isn't the

[Proto-Scripty] Re: morph effects on menu roll-over.. better way?

2010-07-05 Thread Matt
for anyone who has emailed me regarding seeing the code for the solution; i dont like posting code for project that have not been released, but i can give you the jist o the solution so you can apply it to your specific needs. I got everything (information wise) i needed to figure out the queue

[Proto-Scripty] Re: Using Prototype

2010-07-05 Thread P.J.
Thanks T.J. The Language section is definitely a prime example of an area Prototype excels at where jQuery does little in. My aim is to use both libraries in a manner that complements each other. Just looking for positive reinforcement in that idea; looking for specific strengths each library has.