Re: [Proto-Scripty] CSS Selector documentation

2012-10-14 Thread fntzr
Prototype supported Sizzle engine by default. See Sizzle documentation for selectors https://github.com/jquery/sizzle/wiki/Sizzle-Documentation And for prototype $$-function http://api.prototypejs.org/dom/dollar-dollar/ -- You received this message because you are subscribed to the Google Groups

Re: [Proto-Scripty] Re: CSS Selector documentation

2012-10-14 Thread fntzr
Sizzle is selector engine that used by prototypejs and jquery for search the selectors. -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prototype-scriptaculous@googlegroups.com. To unsubscribe

Re: [Proto-Scripty] Event On click behavior with selector

2012-11-03 Thread fntzr
try 'change' event. -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prototype-scriptaculous@googlegroups.com. To unsubscribe from this group, send email to prototype-scriptaculous+unsubscr...@

Re: [Proto-Scripty] inherit this

2012-11-09 Thread fntzr
You must call this.wound() test : function() { this.wound(); } if yoy call Vulnerable.wound() then `this` => Object[Vulnerable]. When you create a Person then all methods from Vulnerable copy into Person Object. -- You received this message because you are subscribed to the Google Grou

Re: [Proto-Scripty] Add element but it's a group of elements

2012-11-09 Thread fntzr
Use var a = ' Vous devez saisir une valeur'; $(document.body).insert(a); -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prototype-scriptaculous@googlegroups.com. To unsubscribe fro

Re: [Proto-Scripty] как создавать в классе правильно частные и публичные методы и свойства

2013-01-07 Thread fntzr
No, this method `msg` is public. But if you create var myClass= Class.create( { initialize:function(str) { this.str=str ; msg=function() {alert ("privat"+this.str);} } , public:function() {alert ("public"+this.str)} } )

Re: [Proto-Scripty] multipart/form-data upload via ajax

2013-01-09 Thread fntzr
It not possible, use Flash Uploader for it, for example http://demo.swfupload.org/v220/simpledemo/index.php. But with HTML5\xhr2 it will be possible. http://dev.w3.org/2006/webapi/FileAPI/#FileReader-interface . -- You received this message because you are subscribed to the Google Groups "Proto