Re: [Proto-Scripty] Re: Registered events and removed DOM objects

2011-06-16 Thread Peter De Berdt
://api.prototypejs.org/dom/Element/purge/ And of course, in quite a few cases event delegation might be a better solution to start off with, either on the parent element or the window object itself. Best regards Peter De Berdt -- You received this message because you are subscribed to the Google

Re: [Proto-Scripty] Firefox 4 - preliminary report

2011-05-11 Thread Peter De Berdt
. So I'm guessing it's highly likely not Prototype, but your code or downloaded components themselves have some issues that Firefox 3 just neglected, but Firefox 4 is being a bitch about. FYI. Best regards Peter De Berdt -- You received this message because you are subscribed to the Google

Re: [Proto-Scripty] Re: can't get queues to work right

2010-09-01 Thread Peter De Berdt
callback like so: var olstext = $('olstext'); olstext.fade({duration: 0.35, afterFinish: function() { olstext.update(Some new text); olstext.appear({duration: 0.5}); }}); Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups Prototype

Re: [Proto-Scripty] Dynamic file upload input creation

2010-07-01 Thread Peter De Berdt
rethinking your strategy and allowing the user themselves to add a new file field via an Add file button. Best regards Peter De Berdt -- 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 prototype

Re: [Proto-Scripty] disable right click

2010-06-05 Thread Peter De Berdt
. Best regards Peter De Berdt -- 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 prototype-scriptacul...@googlegroups.com. To unsubscribe from this group, send email to prototype-scriptaculous

Re: [Proto-Scripty] Ajax.request with enctype:multipart/form-data

2010-06-04 Thread Peter De Berdt
to rely on either an iFrame to post the form data to or a Flash-based solution. You could also wait a couple more years until the HTML5 File API is implemented across all browsers :-) Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups

Re: [Proto-Scripty] Re: Blur, Focus, Event Delegation

2010-05-27 Thread Peter De Berdt
` delegation (because I remember someone saying jQuery does), but I can't immediately find where it was. NWEvents has done so for a long time, if JQuery does it, they probably were inspired by it. But As T.J. pointed out, a feature request is the way to go. Best regards Peter De Berdt -- You

Re: [Proto-Scripty] Effect.Fade works with tr in FireFox but not in Internet Explorer

2010-05-19 Thread Peter De Berdt
since I had to deal with effects on tables. Best regards Peter De Berdt -- 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 prototype-scriptacul...@googlegroups.com. To unsubscribe from this group

Re: [Proto-Scripty] PLease Wait or Loading message

2010-02-10 Thread Peter De Berdt
is completely up to you. Best regards Peter De Berdt -- 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 prototype-scriptacul...@googlegroups.com. To unsubscribe from this group, send email

Re: [Proto-Scripty] Re: Ajax Request PDF to IFRAME

2010-02-09 Thread Peter De Berdt
? Possible? It's downright easy: $('idOfIFrame').src = pathToYourServerScript.xyz; Very important that your server script set the correct content type, of course. I use something similar with a frame (not an iframe), but the concept should be transferrable. Best regards Peter De Berdt

Re: [Proto-Scripty] Ajax Request PDF to IFRAME

2010-02-08 Thread Peter De Berdt
would trigger that iframe to load the PDF. Best regards Peter De Berdt -- 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 prototype-scriptacul...@googlegroups.com. To unsubscribe from this group

Re: [Proto-Scripty] Large checkboxes and radio buttons

2010-02-03 Thread Peter De Berdt
/prototype-iphone-style-checkboxes.html Best regards Peter De Berdt -- 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 prototype-scriptacul...@googlegroups.com. To unsubscribe from this group, send email

Re: [Proto-Scripty] Re: Complete graphical toolkit in js

2009-12-19 Thread Peter De Berdt
components is very similar to Prototype's anyway, except for the Ext instead of Class as the keyword (http://www.extjs.com/learn/Manual:Component:Extending_Ext_Components ). Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups

Re: [Proto-Scripty] Re: Complete graphical toolkit in js

2009-12-19 Thread Peter De Berdt
functionality added. It's also possible to use Prototype in the event handlers etc from ExtJS. Best regards Peter De Berdt -- 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 prototype-scriptacul

Re: [Proto-Scripty] Re: Using Ajax.Request to fetch an image

2009-12-04 Thread Peter De Berdt
event that you capture into another object prototype that does the actual processing or just fill in the handler right away Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send

Re: [Proto-Scripty] this and setTimeout in Prototype-based class

2009-12-03 Thread Peter De Berdt
Prototype way and using Ajax to fetch the image, then use the callback to display the fullscreen version. Now if you still just want to get the setTimeout working, you probably could just use: setTimeout(function() {this._show}.bind(this),300); Best regards Peter De Berdt -- You

Re: [Proto-Scripty] How to use event delegation for mouseenter/mouseleave events?

2009-11-26 Thread Peter De Berdt
use NWEvents and NWMatcher (http://javascript.nwbox.com/NWEvents/ ). For the actual behavior implementation, we still use Prototype +Scripty. Amazing combo, really... Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups Prototype

Re: [Proto-Scripty] Hourglass cursor appear on whole page

2009-11-18 Thread Peter De Berdt
set is as the style for that overlay. For everything else: just use a loading indicator that you show and hide somewhere on the screen. Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post

Re: [Proto-Scripty] Re: Hourglass cursor appear on whole page

2009-11-18 Thread Peter De Berdt
a website with an embedded app, so it is very much like a desktop application. There are blocking events. On Nov 18, 12:12 am, Peter De Berdt peter.de.be...@pandora.be wrote: On 18 Nov 2009, at 01:30, JoJo wrote: When the user clicks a button, I want to show an hourglass cursor while its

[Proto-Scripty] Re: Is stopObserving necessary?

2009-10-30 Thread Peter De Berdt
name=input200 /'; $('inputs').select('input').invoke('observe', 'blur', function() Best regards Peter De Berdt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post

[Proto-Scripty] Re: DragDrop performances

2009-10-28 Thread Peter De Berdt
a droppable (only one) and the use the drop coordinates to find out on what cell the draggable was dropped. Best regards Peter De Berdt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

[Proto-Scripty] Re: Animation Control

2009-08-27 Thread Peter De Berdt
, then you can use Effect.Tween: http://wiki.github.com/madrobby/scriptaculous/effecttween Best regards Peter De Berdt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post

[Proto-Scripty] Re: Need help for performantly creating tooltips

2009-07-22 Thread Peter De Berdt
don't bubble). Doesn't mean you can't use prototype for handling the events itself. http://javascript.nwbox.com/NWEvents/ Best regards Peter De Berdt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype

[Proto-Scripty] Re: Client side searching

2009-07-06 Thread Peter De Berdt
to implement it would depend on the features you want to provide (case insensitive search, pattern matching, etc.). Best regards Peter De Berdt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

[Proto-Scripty] Re: Event bubbling in prototype 1.6

2009-02-04 Thread Peter De Berdt
://code.google.com/p/nwevents/ Best regards Peter De Berdt --~--~-~--~~~---~--~~ 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 prototype-scriptaculous@googlegroups.com

[Proto-Scripty] Re: trigger a 'change' event for a 'select' element

2009-01-29 Thread Peter De Berdt
the right one, check what index it has (selectedIndex is a getter and a setter) and set it to that index. Best regards Peter De Berdt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group

[Proto-Scripty] Re: asynchronous file upload

2009-01-16 Thread Peter De Berdt
OK, what about: http://www.google.com/search?client=safarirls=en-usq=php+upload+progressie=UTF-8oe=UTF-8 On 16 Jan 2009, at 14:04, jason maina wrote: Im using php/mysql on the back-end On Fri, Jan 16, 2009 at 2:01 PM, Peter De Berdt peter.de.be...@pandora.be wrote: On 16 Jan 2009, at 11

[Proto-Scripty] Re: asynchronous file upload

2009-01-14 Thread Peter De Berdt
=safarirls=en-usq=ajax+file+uploadie=UTF-8oe=UTF-8 Basically your choice comes down to: - Flash based uploader, e.g. SWFupload (swfupload.org) - iFrame trick, post file to a hidden iframe, handle it in the backend and evaluate the response back into the main document Best regards Peter De Berdt

[Proto-Scripty] Re: double play with sound.js

2008-12-03 Thread Peter De Berdt
getting played twice. I've scratched my head raw. Any idea what I might be doing wrong? As you'll read on the Rails mailing list, you probably omitted the {replace: true} hash. If you don't include it, the sound isn't overwritten, but played in parallel. Best regards Peter De Berdt

[Proto-Scripty] Re: SlideDown starting fron the bottom

2008-10-14 Thread Peter De Berdt
software / com On Oct 14, 9:29 am, Bart [EMAIL PROTECTED] wrote: Hi I want to use the SlideDown effect, but it has to start from the bottom. So the contents from the div must be reveiled from bottom to top. Is this possible with scriptaculous? Best regards Peter De Berdt

[Proto-Scripty] Re: delegating the event on document

2008-09-19 Thread Peter De Berdt
Best regards Peter De Berdt --~--~-~--~~~---~--~~ 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 prototype-scriptaculous@googlegroups.com To unsubscribe from this group