[Proto-Scripty] cumulativeOffset() differs in ff IE

2008-12-12 Thread Joschi
Hello, I am having trouble with this one. I have a div I use as a window positioned in the middle of the page. On that window I have a form. when filling out the inputs I have a dropdown that I fill with possible values for that input. The dropDown is a select element and I create it on the

[Proto-Scripty] Re: Opera Ctrl + click observing

2008-12-12 Thread T.J. Crowder
Hi, Can you post a *minimalist* example demonstrating the problem to Pastie? http://pastie.org -- T.J. Crowder tj / crowder software / com On Dec 12, 9:57 am, Rauan Maemirov rauan1...@gmail.com wrote: Hi list. I'm trying to prevent Opera's image save dialog when clicking Ctrl + mouseclick.

[Proto-Scripty] Opera Ctrl + click observing

2008-12-12 Thread Rauan Maemirov
Hi list. I'm trying to prevent Opera's image save dialog when clicking Ctrl + mouseclick. e.stop() doesn't help. It's just don't get to observer handler. Does anybody have workaround for this? --~--~-~--~~~---~--~~ You received this message because you are

[Proto-Scripty] Re: Opera Ctrl + click observing

2008-12-12 Thread T.J. Crowder
Hi, You'll probably need to have that code wrapped in a dom:loaded handler or something for it to find the elements reliably. But even doing that, I'm not immediately having any success preventing Opera's default action. I tried hooking events on the image itself (rather than a parent) just in

[Proto-Scripty] problem: inserting html in each loop

2008-12-12 Thread Cyrus
Hi there, I have a weird problem. Imagine following html code: div class=test/div div class=test/div div class=test/div div class=test/div div class=test/div I want to insert other html-code inside all divs class=test: var html = document.createTextNode('test');

[Proto-Scripty] SVN Structure

2008-12-12 Thread Matt Foster
Hey Everyone, Granted this is off the topic of prototype development directly, it will lead into it in the end. I am writing an ajax library that i'd like to A) stand alone B) work with prototype and C) work with Extjs. I'd like to put the code in Google Code and have it available for

[Proto-Scripty] Re: problem: inserting html in each loop

2008-12-12 Thread T.J. Crowder
Hi Cyrus, The text node can only exist within one div, it's not a quantum particle happily living in superposition across all five. :-) It's getting appended five times, but each time the previous parent loses it: appendChild: Adds the node newChild to the end of the list of children of this

[Proto-Scripty] Re: Ajax.InPlaceCollectionEditor and overriding the default onComplete?

2008-12-12 Thread Warren
In case there was anyone wondering the answer to this, turns out there's an htmlResponse option that if you set to false, will turn off auto-updating of the element. Oddly, it wasn't listed in any of the script.aculo.us wiki entries On Dec 11, 6:54 pm, Warren warr...@gmail.com wrote: It

[Proto-Scripty] dom:loaded observing question

2008-12-12 Thread Rauan Maemirov
I'm loading all my scripts almost at the bottom of html and right after them observing 'dom:loaded' event. But it initializes only when all content is loaded (including all images). Is it okay? How can i avoid that waiting all images loading? --~--~-~--~~~---~--~~

[Proto-Scripty] Re: dom:loaded observing question

2008-12-12 Thread Walter Lee Davis
Try loading at least Prototype up in the head of your page, and moving your dom:loaded observer up there right after it. That should get the effect you're after, where the script fires before the page is visible. Depending on what else you have going on in the way of external scripts, you

[Proto-Scripty] Fade away problem (Newbie)

2008-12-12 Thread jess...@gmail.com
Hello everyone, I was wondering if someone might be able to help me. I have 4 links that toggle the opacity of 4 seperate divs, this works great I have the z-index swapping and the opacity fading. The Problem: When I select one section I want the remaining 3 divs to fade away. For example if I

[Proto-Scripty] Re: Set the value of an input field ??

2008-12-12 Thread T.J. Crowder
Hi, The line $(lang).value = this is a test; is fine. I suspect you may be calling it from inline script (your quoted code sample does, but I don't know if you were using shorthand). Until the DOM is fully loaded, referencing elements by ID is problematic -- e.g., doing so from inline

[Proto-Scripty] scriptaclous scrollTo effect in a div??

2008-12-12 Thread uncleroxk
Hi, i really like the effect of scrollTo in scriptaclous, but how do i implement it in a div(overflow). Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group,