[Proto-Scripty] Re: Limit in parameter lenght at Ajax.Request?

2009-10-09 Thread david
Hi Frank, there is a limit if the request is GET. This limit is around 2500 char (don't remember the exact length). This is a browser limitation, not prototype one. But in case you are in a POST request, there should have no limitation ! Couls you send us more info on this problem, like the

[Proto-Scripty] Scale groups of divs with their content

2009-10-09 Thread Tijmen
Hi, I never really worked with scriptaculous before, so maybe its not possible what I want to do. What I would like to achieve is that the main container div scales down to lets say 60% of its original size including all the content that's inside. This works fine, but then only 1 container

[Proto-Scripty] dom:loaded ignore errors

2009-10-09 Thread Magnus Cancellarius
Hello everyone. I have following problem. Prototype 1.6.1 ignore errors if they occurred during the execution of event handler dom: loaded. These errors do not appear in error console or in the firebug. Example: document.observe('dom:loaded', function() { var text =

[Proto-Scripty] Autocompleter across domains with absolute URL doesn't pass the value?

2009-10-09 Thread Philip Brocoum
When I use something like this it works: new Ajax.Autocompleter(autocomplete_geo_input, autocomplete_geo_div, /geographies/autocomplete, {minChars: 3}); However, when I use something like this it doesn't work: new Ajax.Autocompleter(autocomplete_geo_input, autocomplete_geo_div,

[Proto-Scripty] Re: prototype.js from 1.5 from 1.6 in Zend Framework

2009-10-09 Thread david
Hi Romain, I don't know why you can't do var errors = $H(json.errors); on prototype 1.6.x Is there something I miss ?? -- david On 8 oct, 14:57, Romain Dequidt dequidt.rom...@gmail.com wrote: As you can see, onFormSuccess method is bound to the onSuccess callback of the Ajax.Request        

[Proto-Scripty] Re: New API Doc

2009-10-09 Thread T.J. Crowder
Hi, You're not the only one, not by a long chalk. :-) We're working on it. Tobie, Samuel, and Andrew are working hard to improve the structure, navigation, and presentation, and I'm continuing the ongoing quest of copying over, updating, and fleshing- out the content (which is a manual and

[Proto-Scripty] Re: Autocompleter across domains with absolute URL doesn't pass the value?

2009-10-09 Thread Alex McAuley
AJax requests do not work on XDR (Cross domain requests) .. you have to wrap it in a serverside function to get it to work. I realise that 127.0.0.1 is same domain but you also specify a port.. Ajax style requests must use the same domain and port iirc Its not a prototype issue, its a

[Proto-Scripty] Re: dom:loaded ignore errors

2009-10-09 Thread T.J. Crowder
Hi, dom:loaded is triggered by a variety of mechanisms depending on the features of the browser being used; I'm not totally surprised to hear exceptions may get eaten in there somewhere. :-) I'd recommend an exception handler: document.observe('dom:loaded', function() { try {

[Proto-Scripty] Re: About $$ utility

2009-10-09 Thread T.J. Crowder
Hi, But you are going to fix those invalid IDs, right? Because they *will* bite you, at some point. -- T.J. :-) On Oct 8, 6:43 pm, Lorenzo Decesare lorenzo.deces...@gmail.com wrote: I have solved with: $$('#[id~=part1] [id~=partF]') Thanks. Lorenzo 2009/10/8 T.J. Crowder

[Proto-Scripty] Re: 1.5.1 Hash to 1.6.1 Hash compatibility

2009-10-09 Thread david
Hi romain, yoshi, I would have done that instead of a specific hash_wrapper function: $H.wrap( function(originalFunction,myVar){ if (myVar (myVar.constructor == Array) (myVar.length == 0)) { return originalFunction(); } return originalFunction(myVar); } ) var

[Proto-Scripty] Re: select elements

2009-10-09 Thread david
Hi clickforward, could you please send the HTML code with the js code, because I can't catch what is option-10-list, form element or list element ?? -- david On 8 oct, 19:28, speedpac...@gmail.com speedpac...@gmail.com wrote: I guess the thread I started may help you:

[Proto-Scripty] Re: Scale groups of divs with their content

2009-10-09 Thread david
Hi Tijmen, When I found this line of code a href='#' onclick=new Effect.Scale(this.parentNode, 200); return false;Click me for Demo!/a at the github page (http://wiki.github.com/madrobby/ scriptaculous/effect-scale) I figured that since this.parentNode works, this.childNode should also

[Proto-Scripty] Re: hello, this is my first time here.

2009-10-09 Thread david
Hi emspree, normally you'll have no requierement, but I think you should talk a little of javascript. Some knowledge of prototype is good too because it use prototype ! It aims is to provide complexe mechanisme in a simpler manner. so just look at the doc, googling is good, you should find some

[Proto-Scripty] Re: Focus and Blur in IE / Webkit

2009-10-09 Thread david
Hi alex, If I have understand, you could mix the focus/blur with a mouseover/ mouseout even, because when you receive focus, and scroll, you are during a mouseover, and when not over, northing has to be done. Or somethink like that ? Does it gives you idea ? -- david On 9 oct, 12:58, Alex

[Proto-Scripty] Re: Focus and Blur in IE / Webkit

2009-10-09 Thread Alex McAuley
Hi David. It promotes the same problem though .. If i listen for mouseover/mouseout on the element once the mouse goes out of it then it will hide the results element anyway!.. Alex Mcauley http://www.thevacancymarket.com - Original Message - From: david david.brill...@gmail.com

[Proto-Scripty] Re: prototype relativize bug IE7

2009-10-09 Thread david
Hi mikeottinger, If it's work, didn't you break some other code ?? btw, it look like a bug, so open a ticket at lighthouse -- david On 6 oct, 05:20, mikeottinger mikeottin...@gmail.com wrote: Hi Guys,  I did a google search for this, found one hit for it. I'm using the relativize method on

[Proto-Scripty] Re: Focus and Blur in IE / Webkit

2009-10-09 Thread david
alex, I was saying a mix of both evens. For functionnality that work, just use focus/blur, and for the one that don't work, help it with mouseover / out ? Or I peerhaps miss something? A live example ?? -- david On 9 oct, 13:21, Alex McAuley webmas...@thecarmarketplace.com wrote: Hi David.

[Proto-Scripty] Re: Focus and Blur in IE / Webkit

2009-10-09 Thread Alex McAuley
I think i have a way to do it but it involves watching the whole document for a click which i didnt really want to do. Alex Mcauley http://www.thevacancymarket.com - Original Message - From: david david.brill...@gmail.com To: Prototype script.aculo.us

[Proto-Scripty] Re: select elements

2009-10-09 Thread clicforw...@googlemail.com
Hi David, this is the code. I think the DOM is generated by Ajax. Maybe this couse the Prob!? Thanks for Help. ul id=options-10-list class=options-list li input id=options_10_2 class=radio type=radio value=15/ span class=label label for=options_10_2Bodoni/label /span /li /ul On 9 Okt., 12:43,

[Proto-Scripty] Re: Autocompleter across domains with absolute URL doesn't pass the value?

2009-10-09 Thread Philip Brocoum
I figured as much. Thanks =( It seems like a strange safety protocol, as it is allowing me to contact the outside domain. I guess contacting is fine, but not sending form information. On Oct 9, 6:03 am, Alex McAuley webmas...@thecarmarketplace.com wrote: AJax requests do not work on XDR (Cross

[Proto-Scripty] Re: prototype mobile support: best practices?

2009-10-09 Thread Eric
Hi, I once made an imode version of a website. First thing, instead of having if(Mobile...) everywhere, you may consider using a dedicated CSS file (easy to do on server side). This will do 99% of the trick (changing menus layouts, using more suitable font/colors, hiding advertisings, using

[Proto-Scripty] Re: Scriptaculous drag and drop

2009-10-09 Thread disccomp
Check out the scriptaculous draggable examples[1], specifically the yellow box example of { scroll: window }. Hope this helps. -Mark [1] http://wiki.github.com/madrobby/scriptaculous/draggable --~--~-~--~~~---~--~~ You received this message because you are

[Proto-Scripty] Looking for Javascript Developer for a Project

2009-10-09 Thread Ngan
Hi I'm looking for a Javascript Developer who: 1) is very good with OOP Javascript 2) is very good with Prototype Scriptaculous 3) has experience with making WYSIWYG editors (in javascript), specifically: proficient knowledge of Range, Selection, and contentEditable Please email me back if

[Proto-Scripty] eventlist for 1.6.1

2009-10-09 Thread Miguel Beltran R.
to the friendly person waht made the utility Eventlist on http://eventlist.cms-schulze.de are you release a version working with prototype 1.6.1? -- Lo bueno de vivir un dia mas es saber que nos queda un dia menos de vida