Hello, i`m making a page and i start to use the prototype library,
and with explorer many of the thigs not work, for example, the
Autocomplete function of scriptaculous not work in explorer becouse
the funciont down of prototype not work, and i test with other broser
but only in epxlorer nt work, thi sis the script that i use to push
the script
chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) {
//<![CDATA[
this.crearDivAutocomplete(cajaTexto);
var page =new Ajax.Autocompleter(cajaTexto, cajaTexto + "_ac", url,
{paramName: "texto", afterUpdateElement : this.getSelectionId});
//]]>
}
chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) {
var div = Builder.node("div", {id: cajaTexto + "_ac",
className:
"autocomplete"});
$(cajaTexto).parentNode.appendChild(div);
}
chatAjax.prototype.main=function(ruta){
this.crearAutoComplete("filtroBusqueda", ruta+"php_files/clases/
ChatDelfino/ListaUsuario.php");
}
chatAjax.prototype.getSelectionId=function(text, li) {
muestroDatoUSuario(li.id);
}
and thi sis the html
<div class="bz_mesfb">
<div>
<input id="filtroBusqueda" class="bz_mesf"
type="text"
onClick="this.value == ''Search, add, or invite'' ?
this.value = '''' :
true" value="Search, add, or invite"/>
<script type="text/javascript">
<!--scrrip-->
</script>
</div>
<div id="contacInfo"
style="display:none"></div>
</div>
and nothing happend i was debugging to found the problem in explorer
but when i find the function down() nothing happend this
I need help please
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---
what versions of Internet Explorer are you trying to get your code to work on? On 5/25/07, mdelfino <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > Hello, i`m making a page and i start to use the prototype library, > and with explorer many of the thigs not work, for example, the > Autocomplete function of scriptaculous not work in explorer becouse > the funciont down of prototype not work, and i test with other broser > but only in epxlorer nt work, thi sis the script that i use to push > the script > chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) { > //<![CDATA[ > this.crearDivAutocomplete(cajaTexto); > var page =new Ajax.Autocompleter(cajaTexto, cajaTexto + "_ac", > url, > {paramName: "texto", afterUpdateElement : this.getSelectionId}); > > //]]> > } > > chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) { > var div = Builder.node("div", {id: cajaTexto + "_ac", className: > "autocomplete"}); > $(cajaTexto).parentNode.appendChild(div); > } > chatAjax.prototype.main=function(ruta){ > this.crearAutoComplete("filtroBusqueda", ruta+"php_files/clases/ > ChatDelfino/ListaUsuario.php"); > > } > chatAjax.prototype.getSelectionId=function(text, li) { > muestroDatoUSuario(li.id); > } > and thi sis the html > <div class="bz_mesfb"> > > <div> > <input id="filtroBusqueda" class="bz_mesf" type="text" > onClick="this.value == ''Search, add, or invite'' ? this.value = '''' : > true" value="Search, add, or invite"/> > <script type="text/javascript"> > <!--scrrip--> > </script> > </div> > <div id="contacInfo" style="display:none"></div> > </div> > > and nothing happend i was debugging to found the problem in explorer > but when i find the function down() nothing happend this > I need help please > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
thanks for you answer, the verion is the 7
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:39 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
what versions of Internet Explorer are you trying to get your code to work on?
On 5/25/07, mdelfino <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
> wrote:
Hello, i`m making a page and i start to use the prototype library,
and with explorer many of the thigs not work, for example, the
Autocomplete function of scriptaculous not work in explorer becouse
the funciont down of prototype not work, and i test with other broser
but only in epxlorer nt work, thi sis the script that i use to push
the script
chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) {
//<![CDATA[
this.crearDivAutocomplete(cajaTexto);
var page =new Ajax.Autocompleter(cajaTexto, cajaTexto +
"_ac", url,
{paramName: "texto", afterUpdateElement : this.getSelectionId});
//]]>
}
chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) {
var div = Builder.node("div", {id: cajaTexto +
"_ac", className:
"autocomplete"});
$(cajaTexto).parentNode.appendChild(div);
}
chatAjax.prototype.main=function(ruta){
this.crearAutoComplete("filtroBusqueda",
ruta+"php_files/clases/
ChatDelfino/ListaUsuario.php");
}
chatAjax.prototype.getSelectionId=function(text, li) {
muestroDatoUSuario(li.id);
}
and thi sis the html
<div class="bz_mesfb">
<div>
<input id="filtroBusqueda" class="bz_mesf"
type="text"
onClick="this.value == ''Search, add, or invite'' ?
this.value = '''' :
true" value="Search, add, or invite"/>
<script type="text/javascript">
<!--scrrip-->
</script>
</div>
<div id="contacInfo"
style="display:none"></div>
</div>
and nothing happend i was debugging to found the problem in explorer
but when i find the function down() nothing happend this
I need help please
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---
which version of Prototype and which version of Scriptaculous are you using? On 5/25/07, Delfino Mario <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > thanks for you answer, the verion is the 7 > > ----- Original Message ----- > *From:* Mark Holton <holtonma-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > *To:* rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > *Sent:* Friday, May 25, 2007 7:39 PM > *Subject:* [Rails-spinoffs] Re: Proble with prototype > > what versions of Internet Explorer are you trying to get your code to work > on? > > > On 5/25/07, mdelfino <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org+>> > wrote: > > > > > > Hello, i`m making a page and i start to use the prototype library, > > and with explorer many of the thigs not work, for example, the > > Autocomplete function of scriptaculous not work in explorer becouse > > the funciont down of prototype not work, and i test with other broser > > but only in epxlorer nt work, thi sis the script that i use to push > > the script > > chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) { > > //<![CDATA[ > > this.crearDivAutocomplete(cajaTexto); > > var page =new Ajax.Autocompleter(cajaTexto, cajaTexto + "_ac", > > url, > > {paramName: "texto", afterUpdateElement : this.getSelectionId}); > > > > //]]> > > } > > > > chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) { > > var div = Builder.node("div", {id: cajaTexto + "_ac", className: > > > > "autocomplete"}); > > $(cajaTexto).parentNode.appendChild(div); > > } > > chatAjax.prototype.main=function(ruta){ > > this.crearAutoComplete("filtroBusqueda", ruta+"php_files/clases/ > > > > ChatDelfino/ListaUsuario.php"); > > > > } > > chatAjax.prototype.getSelectionId=function(text, li) { > > muestroDatoUSuario(li.id); > > } > > and thi sis the html > > <div class="bz_mesfb"> > > > > <div> > > <input id="filtroBusqueda" class="bz_mesf" type="text" > > onClick="this.value == ''Search, add, or invite'' ? this.value = '''' : > > true" value="Search, add, or invite"/> > > <script type="text/javascript"> > > <!--scrrip--> > > </script> > > </div> > > <div id="contacInfo" style="display:none"></div> > > </div> > > > > and nothing happend i was debugging to found the problem in explorer > > but when i find the function down() nothing happend this > > I need help please > > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
i was usgin the verion 1.6 and i just download the last veriosn script.aculo.us
scriptaculous.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
and still have the same problem
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:44 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
which version of Prototype and which version of Scriptaculous are you using?
On 5/25/07, Delfino Mario
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote:
thanks for you answer, the verion is the 7
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:39 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
what versions of Internet Explorer are you trying to get your code to work
on?
On 5/25/07, mdelfino
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote:
Hello, i`m making a page and i start to use the prototype library,
and with explorer many of the thigs not work, for example, the
Autocomplete function of scriptaculous not work in explorer becouse
the funciont down of prototype not work, and i test with other broser
but only in epxlorer nt work, thi sis the script that i use to push
the script
chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) {
//<![CDATA[
this.crearDivAutocomplete(cajaTexto);
var page =new Ajax.Autocompleter(cajaTexto, cajaTexto +
"_ac", url,
{paramName: "texto", afterUpdateElement :
this.getSelectionId});
//]]>
}
chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) {
var div = Builder.node("div", {id: cajaTexto +
"_ac", className:
"autocomplete"});
$(cajaTexto).parentNode.appendChild(div);
}
chatAjax.prototype.main=function(ruta){
this.crearAutoComplete("filtroBusqueda",
ruta+"php_files/clases/
ChatDelfino/ListaUsuario.php");
}
chatAjax.prototype.getSelectionId=function(text, li) {
muestroDatoUSuario(li.id);
}
and thi sis the html
<div class="bz_mesfb">
<div>
<input id="filtroBusqueda" class="bz_mesf"
type="text"
onClick="this.value == ''Search, add, or invite'' ?
this.value = '''' :
true" value="Search, add, or invite"/>
<script type="text/javascript">
<!--scrrip-->
</script>
</div>
<div id="contacInfo"
style="display:none"></div>
</div>
and nothing happend i was debugging to found the problem in explorer
but when i find the function down() nothing happend this
I need help please
--~--~---------~--~----~------------~-------~--~----~
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 i find the problem, the probles is that i use to scripts of spry, and whne
the two script ar ein the same page nothign of scriptacoulous owrks in epxlorer,
and when i take off the file of sprydata then work, i have to find the problem
why cant stay together
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:44 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
which version of Prototype and which version of Scriptaculous are you using?
On 5/25/07, Delfino Mario
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote:
thanks for you answer, the verion is the 7
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:39 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
what versions of Internet Explorer are you trying to get your code to work
on?
On 5/25/07, mdelfino
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote:
Hello, i`m making a page and i start to use the prototype library,
and with explorer many of the thigs not work, for example, the
Autocomplete function of scriptaculous not work in explorer becouse
the funciont down of prototype not work, and i test with other broser
but only in epxlorer nt work, thi sis the script that i use to push
the script
chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) {
//<![CDATA[
this.crearDivAutocomplete(cajaTexto);
var page =new Ajax.Autocompleter(cajaTexto, cajaTexto +
"_ac", url,
{paramName: "texto", afterUpdateElement :
this.getSelectionId});
//]]>
}
chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) {
var div = Builder.node("div", {id: cajaTexto +
"_ac", className:
"autocomplete"});
$(cajaTexto).parentNode.appendChild(div);
}
chatAjax.prototype.main=function(ruta){
this.crearAutoComplete("filtroBusqueda",
ruta+"php_files/clases/
ChatDelfino/ListaUsuario.php");
}
chatAjax.prototype.getSelectionId=function(text, li) {
muestroDatoUSuario(li.id);
}
and thi sis the html
<div class="bz_mesfb">
<div>
<input id="filtroBusqueda" class="bz_mesf"
type="text"
onClick="this.value == ''Search, add, or invite'' ?
this.value = '''' :
true" value="Search, add, or invite"/>
<script type="text/javascript">
<!--scrrip-->
</script>
</div>
<div id="contacInfo"
style="display:none"></div>
</div>
and nothing happend i was debugging to found the problem in explorer
but when i find the function down() nothing happend this
I need help please
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---
very nice (and good to know). On 5/25/07, Delfino Mario <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > hi i find the problem, the probles is that i use to scripts of spry, and > whne the two script ar ein the same page nothign of scriptacoulous owrks in > epxlorer, and when i take off the file of sprydata then work, i have to find > the problem why cant stay together > > ----- Original Message ----- > *From:* Mark Holton <holtonma-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > *To:* rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > *Sent:* Friday, May 25, 2007 7:44 PM > *Subject:* [Rails-spinoffs] Re: Proble with prototype > > which version of Prototype and which version of Scriptaculous are you > using? > > On 5/25/07, Delfino Mario <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org+>> wrote: > > > > thanks for you answer, the verion is the 7 > > > > ----- Original Message ----- > > *From:* Mark Holton <holtonma-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > *To:* rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > *Sent:* Friday, May 25, 2007 7:39 PM > > *Subject:* [Rails-spinoffs] Re: Proble with prototype > > > > what versions of Internet Explorer are you trying to get your code to > > work on? > > > > > > On 5/25/07, mdelfino <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org+>> > > wrote: > > > > > > > > > Hello, i`m making a page and i start to use the prototype library, > > > and with explorer many of the thigs not work, for example, the > > > Autocomplete function of scriptaculous not work in explorer becouse > > > the funciont down of prototype not work, and i test with other broser > > > but only in epxlorer nt work, thi sis the script that i use to push > > > the script > > > chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) { > > > //<![CDATA[ > > > this.crearDivAutocomplete(cajaTexto); > > > var page =new Ajax.Autocompleter(cajaTexto, cajaTexto + "_ac", > > > url, > > > {paramName: "texto", afterUpdateElement : this.getSelectionId}); > > > > > > //]]> > > > } > > > > > > chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) { > > > var div = Builder.node("div", {id: cajaTexto + "_ac", > > > className: > > > "autocomplete"}); > > > $(cajaTexto).parentNode.appendChild(div); > > > } > > > chatAjax.prototype.main=function(ruta){ > > > this.crearAutoComplete("filtroBusqueda", > > > ruta+"php_files/clases/ > > > ChatDelfino/ListaUsuario.php"); > > > > > > } > > > chatAjax.prototype.getSelectionId=function(text, li) { > > > muestroDatoUSuario(li.id); > > > } > > > and thi sis the html > > > <div class="bz_mesfb"> > > > > > > <div> > > > <input id="filtroBusqueda" class="bz_mesf" type="text" > > > onClick="this.value == ''Search, add, or invite'' ? this.value = '''' : > > > true" value="Search, add, or invite"/> > > > <script type="text/javascript"> > > > <!--scrrip--> > > > </script> > > > </div> > > > <div id="contacInfo" style="display:none"></div> > > > </div> > > > > > > and nothing happend i was debugging to found the problem in explorer > > > but when i find the function down() nothing happend this > > > I need help please > > > > > > > > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
look i did the thing i downoad the last version of spry and now works
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 8:34 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
very nice (and good to know).
On 5/25/07, Delfino Mario
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
hi i find the problem, the probles is that i use to scripts of spry, and
whne the two script ar ein the same page nothign of scriptacoulous owrks in
epxlorer, and when i take off the file of sprydata then work, i have to find the
problem why cant stay together
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:44 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
which version of Prototype and which version of Scriptaculous are you
using?
On 5/25/07, Delfino Mario
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote:
thanks for you answer, the verion is the 7
----- Original Message -----
From: Mark Holton
To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Sent: Friday, May 25, 2007 7:39 PM
Subject: [Rails-spinoffs] Re: Proble with prototype
what versions of Internet Explorer are you trying to get your code to
work on?
On 5/25/07, mdelfino
<mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote:
Hello, i`m making a page and i start to use the prototype library,
and with explorer many of the thigs not work, for example, the
Autocomplete function of scriptaculous not work in explorer becouse
the funciont down of prototype not work, and i test with other
broser
but only in epxlorer nt work, thi sis the script that i use to push
the script
chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) {
//<![CDATA[
this.crearDivAutocomplete(cajaTexto);
var page =new Ajax.Autocompleter(cajaTexto, cajaTexto +
"_ac", url,
{paramName: "texto", afterUpdateElement :
this.getSelectionId});
//]]>
}
chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) {
var div = Builder.node("div", {id: cajaTexto +
"_ac", className:
"autocomplete"});
$(cajaTexto).parentNode.appendChild(div);
}
chatAjax.prototype.main=function(ruta){
this.crearAutoComplete("filtroBusqueda",
ruta+"php_files/clases/
ChatDelfino/ListaUsuario.php");
}
chatAjax.prototype.getSelectionId=function(text, li) {
muestroDatoUSuario(li.id);
}
and thi sis the html
<div class="bz_mesfb">
<div>
<input id="filtroBusqueda"
class="bz_mesf" type="text"
onClick="this.value == ''Search, add, or
invite'' ? this.value = '''' :
true" value="Search, add, or invite"/>
<script type="text/javascript">
<!--scrrip-->
</script>
</div>
<div id="contacInfo"
style="display:none"></div>
</div>
and nothing happend i was debugging to found the problem in explorer
but when i find the function down() nothing happend this
I need help please
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---
While I don''t use spry, I know that it is (partly) based on script.aculo.us[1]; so I can see possible clashes here. Best, Thomas [1] http://livedocs.adobe.com/en_US/Spry/1.4/help.html? content=WS95A9C84E-B109-4f9d-BC35-53F2F076CBD0.html Am 26.05.2007 um 01:43 schrieb Delfino Mario:> look i did the thing i downoad the last version of spry and now works > ----- Original Message ----- > From: Mark Holton > To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Sent: Friday, May 25, 2007 8:34 PM > Subject: [Rails-spinoffs] Re: Proble with prototype > > very nice (and good to know). > > > On 5/25/07, Delfino Mario <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > hi i find the problem, the probles is that i use to scripts of > spry, and whne the two script ar ein the same page nothign of > scriptacoulous owrks in epxlorer, and when i take off the file of > sprydata then work, i have to find the problem why cant stay together > ----- Original Message ----- > From: Mark Holton > To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Sent: Friday, May 25, 2007 7:44 PM > Subject: [Rails-spinoffs] Re: Proble with prototype > > which version of Prototype and which version of Scriptaculous are > you using? > > On 5/25/07, Delfino Mario <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote: > thanks for you answer, the verion is the 7 > ----- Original Message ----- > From: Mark Holton > To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Sent: Friday, May 25, 2007 7:39 PM > Subject: [Rails-spinoffs] Re: Proble with prototype > > what versions of Internet Explorer are you trying to get your code > to work on? > > > On 5/25/07, mdelfino <mario.delfino-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote: > Hello, i`m making a page and i start to use the prototype library, > and with explorer many of the thigs not work, for example, the > Autocomplete function of scriptaculous not work in explorer becouse > the funciont down of prototype not work, and i test with other broser > but only in epxlorer nt work, thi sis the script that i use to push > the script > chatAjax.prototype.crearAutoComplete=function(cajaTexto, url) { > //<![CDATA[ > this.crearDivAutocomplete(cajaTexto); > var page =new Ajax.Autocompleter(cajaTexto, cajaTexto + > "_ac", url, > {paramName: "texto", afterUpdateElement : this.getSelectionId}); > > //]]> > } > > chatAjax.prototype.crearDivAutocomplete=function(cajaTexto) { > var div = Builder.node("div", {id: cajaTexto + "_ac", > className: > "autocomplete"}); > $(cajaTexto).parentNode.appendChild(div); > } > chatAjax.prototype.main=function(ruta){ > this.crearAutoComplete("filtroBusqueda", ruta+"php_files/ > clases/ > ChatDelfino/ListaUsuario.php"); > > } > chatAjax.prototype.getSelectionId=function(text, li) { > muestroDatoUSuario(li.id); > } > and thi sis the html > <div class="bz_mesfb"> > > <div> > <input id="filtroBusqueda" class="bz_mesf" type="text" > onClick="this.value == ''Search, add, or invite'' ? this.value = '''' : > true" value="Search, add, or invite"/> > <script type="text/javascript"> > <!--scrrip--> > </script> > </div> > <div id="contacInfo" style="display:none"></div> > </div> > > and nothing happend i was debugging to found the problem in explorer > but when i find the function down() nothing happend this > I need help please > > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---