[Proto-Scripty] a few widgets

2012-04-17 Thread mikhail
Hi all. I created a few widgets for the prototype and script.aculo.us. See here https://github.com/fntzr/astra_z Thanks. -- 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@

[Proto-Scripty] Re: What's the difference between fire() and whatever turbo links does?

2014-06-02 Thread mikhail
A temporary solution: $(document).on("page:load", function() { c("page load1"); }); $(document).addEventListener("page:load", function(e) { $(document).fire("page:load", e); }); I looked a event.js, and when created a custom event, then not create an explicit event listener. Maybe need ch

[Proto-Scripty] Ajax.Request how to disable xml entity transformation

2009-09-13 Thread Mikhail Shevchuk
Hello Prototype developers, I have an XML data in parameters for the request, but when it it sent I see in HTTP Analyzer that it is transformed like that: %3E%3Csoap%3AEnvelope%0A%0A%20xmlns%3Asoap=%22http%3A%2F%2Fschemas How can I disable this and to send XML as is? Thanks a lot --~--~--

[Proto-Scripty] hash iterator

2010-01-23 Thread Mikhail Kozhevnikov
bother with reassignment at all? Well, most importantly it makes make the code more readable, as the name of the variable reflects the semantics, while "pair.value" doesn't. Cheers, Mikhail. -- You received this message because you are subscribed to the Google Groups "Prototy

Re: [Proto-Scripty] Re: hash iterator

2010-01-24 Thread Mikhail Kozhevnikov
Hi, Thanks for your reply! I've already done so, but I'm not really a fan of mixing something into external classes. I think of either wrapping it, or just writing a simple one of my own instead. Cheers, Mikhail. On Sun, Jan 24, 2010 at 7:30 AM, T.J. Crowder wrote: > Hi, >