Herve.Thouzard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-May-11 09:31 UTC
Problem with Prototype and IE7
Hello, I have a problem with Prototype and IE7. It''s running perfectly with Firefox but nothing happens with IE7 and the last version of Prototype (1.5.1). I''m using an ajax updater. The strangest thing is that it''s running perfectly with Prototype 1.4 ! Any idea why ? bye, Herve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Herve, You''ll have to post some code. 1.5.1 is running smotthly as ever in IE7 for me. Regards, Tobie On May 11, 5:31 am, "Herve.Thouz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org" <Herve.Thouz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hello, > > I have a problem with Prototype and IE7. It''s running perfectly with > Firefox but nothing happens with IE7 and the last version of Prototype > (1.5.1). I''m using an ajax updater. The strangest thing is that it''s > running perfectly with Prototype 1.4 ! > Any idea why ? > > bye, > Herve--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Herve.Thouzard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-May-11 09:50 UTC
Re: Problem with Prototype and IE7
Hello Tobie, First thanks a lot for your answer. Here is a summary of my code. First in the page''s header : <script type="text/javascript" src="http://localhost/xoops3/modules/ mykart/js/prototype.js"></script> <script type="text/javascript" src="http://localhost/xoops3/modules/ mykart/js/scriptaculous.js"></script> Then in the body : <form method=''post'' action=''http://localhost/xoops3/modules/mykart/ saisie.php'' name=''frmsaisepreuve'' id=''frmsaisepreuve''> <input type=''hidden'' name=''op'' id=''op'' value=''enregepreuve'' /> <table border="1" cellpadding="2" cellspacing="2"> <tr> <th>Identifiant, nom et prénom du pilote</th> <th>Position à l''arrivée</th> <th>Pôle position ?</th> <th>Meilleur tour ?</th> <th>Durée ou nombre de tours</th> <th>Remarque</th> </tr> <tr> <td> <div id="infpilote0"> <table border="0"> <tr> <td align=''center''><input type="text" name="pilote_id0" id="pilote_id0" value="" size="5" onBlur="majpilote(''infpilote0'', 0,this.value);" /></td> <td><input type="text" name="pilote_nom0" id="pilote_nom0" value="" size="30" maxlength="255" /></td> <td><input type="text" name="pilote_prenom0" id="pilote_prenom0" value="" size="20" maxlength="255" /></td> <td><img src="http://localhost/xoops3/modules/mykart/images/ search.gif" alt="Rechercher" border="0" onclick="Popup(0);" /></td> </tr> </table> </div> </td> <td><input type="text" name="resultat_position0" id="resultat_position0" value="0" size="4" /></td> <td align=''center''><input type="radio" name="resultat_pole" id="resultat_pole" value="0" /></td> <td align=''center''><input type="radio" name="resultat_meilleur_tour" id="resultat_meilleur_tour" value="0" /></td> <td><input type="text" name="resultat_duree_tours0" id="resultat_duree_tours0" value="" size="5" /></td> <td><input type="text" name="resultat_remarque0" id="resultat_remarque0" value="" size="20" maxlength="255" /></td> </tr> </table> <br /> <b>Cliquez sur la loupe pour rechercher un pilote</b> <script type="text/javascript"> function majpilote(qlayer, compteur, idsaisi) { var pars = ''DivId=''+compteur+''&idSaisi=''+idsaisi; var myAjax1 = new Ajax.Updater(qlayer,''http://localhost/xoops3/ modules/mykart/ajpilotes.php'',{method: ''post'', parameters: pars, evalScripts: true}); } function Popup(cpt) { fen=window.open("http://localhost/xoops3/modules/mykart/ rechpilote.php? compteur="+cpt,"Recherche","0,0,0,0,0,resizable=yes,scrollbars=yes, 0,width=450,height=350"); if( self.focus ) fen.focus(); } </script> </form> Do you also need the Php script''s code? bye, Hervé --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Herve.Thouzard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-May-12 09:20 UTC
Re: Problem with Prototype and IE7
Hello, any idea too ? Bye, Hervé --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Hervé, Please trim it down to a simpler test case so we can really figure out what the issue is. A live version would also be great. Regards, Tobie --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---