[Proto-Scripty] Re: Event.observe problem with IE8

2012-10-12 Thread Michael Huber
the problem occurred in combination with google maps api v3. i deactivated google maps for ie9 and it works. not a solution, but a workaround until i have time to fix it (or google fixes it!?) cheers, Mike Am Montag, 1. Oktober 2012 12:32:53 UTC+2 schrieb Michael Huber: I've a problem

[Proto-Scripty] Event.observe problem with IE8

2012-10-01 Thread Michael Huber
I've a problem with Event.observe on the following site: http://www.seminardmc.at/de/menu10/seminare21/?termin=65 Sorry, the website is in German only. The problem occurs when I'm clicking the button Jetzt anmelden / vormerken on the left side of the page. In

Re: [Proto-Scripty] Re: query seems to keep returning

2010-05-27 Thread Michael P. Soulier
suspected as much. I didn't catch that in the spec I read but given the web's stateless behaviour my instincts told me that something like this had to be required. Confirmed that this fixes the problem. I'm seeing proper responses in the transport.responseText now. Many thanks, Mike -- Michael P

Re: [Proto-Scripty] Re: query seems to keep returning

2010-05-26 Thread Michael P. Soulier
-Type: application/json { reason: No workers ready, try again soon, status: defer } Any idea why the responseText would still come back empty? Thanks, Mike -- Michael P. Soulier msoul...@digitaltorque.ca Any intelligent fool can make things bigger and more complex... It takes a touch

Re: [Proto-Scripty] Scope problem with prototype

2010-02-15 Thread Michael T. Wescoat
Hi, At first blush, it appears that the use of $$() might be problematic. I was expecting to see something with Element.select(), which is described this way in prototype-160-api.pdf: This method is very similar to $$() but can be used within the context of one element, rather than the

[Proto-Scripty] Re: Simple Ajax form

2009-11-01 Thread Michael Haston
JSON response ... {success : true, message : good} Code ... function ajaxRequest2(){ var url = /cgidev2p/r_chgpwd.pgm; var pars = 'v_current=' + escape($F('v_current')) + 'v_new=' + escape($F('v_new')) + 'v_confirm=' + escape($F('v_confirm')) +

[Proto-Scripty] Re: Ajax.Request with JSON response

2009-11-01 Thread Michael Haston
JSON response ... {success : true, message : good} Code ... function ajaxRequest2(){ var url = /cgidev2p/r_chgpwd.pgm; var pars = 'v_current=' + escape($F('v_current')) + 'v_new=' + escape($F('v_new')) + 'v_confirm=' + escape($F('v_confirm')) +

[Proto-Scripty] Re: Simple Ajax form

2009-11-01 Thread Michael Haston
Sorry this post went to the wrong thread. -Original Message- From: prototype-scriptaculous@googlegroups.com [mailto:prototype-scriptacul...@googlegroups.com] On Behalf Of vicente.batista Sent: Friday, October 30, 2009 12:16 PM To: Prototype script.aculo.us Subject: [Proto-Scripty]

[Proto-Scripty] Re: Ajax.Request with JSON response

2009-10-29 Thread michael
What would my json response look like (syntax-wise) in this case? On Thu, 29 Oct 2009 07:28:43 -0700 (PDT), Lapis petter.env...@gmail.com wrote: I think I'd do it more like this, if i just wanted JSON as the response: On the server: set the response type to application/json, something to

[Proto-Scripty] Re: Ajax.Request with JSON response

2009-10-29 Thread Michael Haston
Didn't seem to work for me. I might have it wrong. Code ... function ajaxRequest2(){ var url = /cgidev2p/r_chgpwd.pgm; var pars = 'v_current=' + escape($F('v_current')) + 'v_new=' + escape($F('v_new')) + 'v_confirm=' +

[Proto-Scripty] IE6 image help

2009-06-08 Thread Michael Stephens
Hello all, I'm using prototype to try and preload some images. I have a tree that repeats the same icon multiple times. In IE6 I get multiple requests for the same image. I've tried tons of headers. Can anyone help me with this. Michael Stephens Electrical Engineering Graduate Student

[Proto-Scripty] evalScripts and functions

2009-05-25 Thread Michael
I understand how Prototype works with regards to the removal of script tags after evaling the results of an Ajax request. However, I was doing some research and am now starting to wonder why the way I declare functions works. According to the Prototype documentation, you need to declare the

[Proto-Scripty] Re: Creating a Submit Button

2009-03-06 Thread Michael Hauptmann
Hi Tomaso, The submit is a input element. new Element('input', {'type' : 'submit'}) should work. Miguel Tommaso wrote: I am having a problem creating a submit button with prototype in IE. I use the following code: button = new Element('button', {'type' : 'submit'}); form.insert(button)

[Proto-Scripty] Re: Creating a Submit Button

2009-03-06 Thread Michael Hauptmann
Hi Colin, I wasn't aware about these details, but the last time I had this problem I could solve it by using an input element :-) As many times... this problem finally is an IE issue, it's not about standards :-) Regards, Miguel ColinFine wrote: On Mar 6, 10:05 am, Michael Hauptmannmhauptm

[Proto-Scripty] Re: validation for alphanumeric field/sequence

2009-02-05 Thread Michael
I need V3 and B47242 and V54000 to be valid. Any other sequence would give the error message. On Feb 5, 7:02 am, david david.brill...@gmail.com wrote: Hi Michael, Do you have any restriction, for the valid number sequence, because, we must create any regexp for a precise need. So what

[Proto-Scripty] Re: validation for alphanumeric field/sequence

2009-02-05 Thread Michael
Thank you all - Kangax's low profile technique works like a champ. Walter Lee: Regular expressions hurt my head. I will get there one day. The actual thing I am working on take about 100 alpha/numeric sequences of no real logical order... so making it in regular expression would take far longer

[Proto-Scripty] validation for alphanumeric field/sequence

2009-02-04 Thread Michael
Hi - I want to use this validation for an alphanumeric field. return Validation.get('IsEmpty').test(v) || !/\W/.test(v) But I only want the field to be valid if the sequence is V3 or B40009 or J50008 (for example). It will be valid only for a few letter/ number sequences. I can't really

[Proto-Scripty] Re: Coupon Code validation

2008-12-16 Thread Michael
This is awesome - I am totally almost getting this! What if my Coupon Code started at some number mid sequence - like everything greater then C32456 would be valid... On Dec 16, 8:45 am, kangax kan...@gmail.com wrote: On Dec 16, 5:17 am, SWilk wilkola...@gmail.com wrote: Michael wrote

[Proto-Scripty] Reinitialize lib after ajax.request

2008-11-07 Thread Michael
it - but it doesn´t ... var data = transport.responseText; new Effect.Fade(container, { afterFinish: function () { $(container).update(data); new Effect.Appear(container); new Effect.Fade(element); } }); }}); } I hope anyone can help me with this. Regards, Michael

[Proto-Scripty] Re: document.viewport.getDimensions()

2008-11-03 Thread michael . j . cannon
Thanks, TJ. That was it. details omitted... Quirks mode BAD. - Mike On Nov 3, 2008 4:44am, TJ Crowder [EMAIL PROTECTED] wrote: Hi, Sorry! I see that you said you *are* using 1.6.0.3. Do you have a doctype on your document? As far as I know, Prototype basically doesn't support

[Proto-Scripty] Re: Help!

2008-11-02 Thread Michael Stephens
Have you tried using the JSON Serializer in System.Web.Extensions. I have very good luck building custom serializers with this library that are JSON friendly. On a side note, I just got my first Comet App running with Asp.net and prototype. Thanks Prototype! Michael Stephens Electrical

[Proto-Scripty] getting anchors to work with my accordion

2008-10-15 Thread Michael McKelvaney
that I can use to fix this?? The web page is located at a href=test.mckelvaney.co.uk/ mckelvaney.co.uktest.mckelvaney.co.uk/mckelvaney.co.uk/a Thanks in advance, Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Proto-Scripty] Re: Autocompleter and Modalbox

2008-10-03 Thread Michael Hauptmann
Hi CB, You could try and assign a zIndex higher than 10.000 to #div1. I'm using both together without problems, but had to increase the zIndex of the results div in order to show it above the layer. Maybe that helps, Miguel MikeFeltman wrote: I'm having some problems with ModalBox as well. It