Re: [Proto-Scripty] New Bugfix release 1.7.3

2015-10-01 Thread mike
Great news. Thanks 02.10.2015 у 00:54 Jason напісаў: Hi Everyone Andrew just tagged and released 1.7.3 Read more about it on the blog post http://prototypejs.org/2015/09/24/prototype-1-7-3/ -- You received this message because you are subscribed to the Google Groups "Prototype &

Re: [Proto-Scripty] Getting an error with effect.js in Chrome Illegal Constructor

2015-01-10 Thread mike
Seems in you code, error, what is `child`? You might post code with error in jsfiddle? 07.01.2015 у 02:53 Evan Carroll напісаў: This is triggering an error in Chrome 39 new Element('span', {style: tagifyStyle}).update( character == ' ' ? String.fromCharCode(160) :

Re: [Proto-Scripty] Prototype.js Book 1.7?

2014-11-10 Thread mike
Hi. Prototype you might see api in http://api.prototypejs.org/ Or build own version of api 1. clone repo https://github.com/sstephenson/prototype 2. run `rake doc:build` task 3. open doc/index.html and you will see the last api. On Пан, Ліс 10, 2014 at 1:11 , Mark markemil.mor...@gmail.com

Re: [Proto-Scripty] Execute an action after the queue has finished

2014-07-16 Thread mike
Set a callback function for Effect Effect.DropOut(first_line , {queue: 'front', limit: 2, scope: 'remove', afterFinish: function() { ...you code... }}); More: http://madrobby.github.io/scriptaculous/core-effects/ On Срд, Ліп 16, 2014 at 4:31 , Wender Jean wender.j...@gmail.com wrote:

Re: [Proto-Scripty] Updates to PrototypeJS

2014-03-13 Thread mike
Hi. What is need for the next big release (1.8\2.0). New ajax engine with XMLHttpRequest 2 support, or new dom api or some like this? -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To unsubscribe from this group and stop

Re: [Proto-Scripty] Show of hands

2014-01-03 Thread mike
Happy New Year to you too. I work with prototype.js. And port some widgets from bootsrap:https://github.com/fntzr/astra_z It work, and possibly create own widgets, it depend only on bootstrap.css. Any examples:

Re: [Proto-Scripty] Scroll not working on mobile devices

2013-08-22 Thread mike
Hi, You can talk in more detail and and provide a small example? -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [Proto-Scripty] determine if any of checkbox[] is checked

2013-03-31 Thread mike
try $$(...) because $() equal document.getElementById -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [Proto-Scripty] How to pass parameter from prototypejs client to rest web service

2013-02-14 Thread mike
You use something like Firebug or Chrome Developer Tools. See whether the parameters passed? Also in you javascript code is missing a comma after parameters line. -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To unsubscribe from

Re: [Proto-Scripty] не работает такая конструкция $('id').$$(tag)

2013-01-26 Thread mike
try $('id').select('tag') -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To unsubscribe from this group and stop receiving emails from it, send an email to prototype-scriptaculous+unsubscr...@googlegroups.com. To post to this

Re: [Proto-Scripty] innerHTML

2013-01-26 Thread mike
On 26.01.2013 22:56, Александр Павленко wrote: есть ли что то похожее на свойство innerHTML в prototypeinsert() только добавляет, а старое содержимое элемента не удаляет -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to

[Proto-Scripty] calling a function using oncomplete

2011-05-27 Thread Mike
I have a form with a select box and a text input. When I select an item in the select list the page make an ajax call request to a php script that returns rows from mysql. I am able to add items to the db by entering a value in the text input and hitting submit. The problem is I want the

[Proto-Scripty] prototype needs a noConflict() option similar to the one in jQuery

2010-04-24 Thread Mike
Can this happen, please ? :) I see a bunch of people on the web looking for this feature and while jQuery was nice enough to allow for it, I don't see the same option in prototype, unfortunately. Please? -- You received this message because you are subscribed to the Google Groups Prototype

[Proto-Scripty] Conflicting scripts

2010-04-22 Thread Mike
is for a slideshow thats on the page, and the other is for a lightbox on the same page. Any help would be very welcome. The two files can be found here... http://with-a-t.com/jquery.js and http://with-a-t.com/prototype.js Thanks for reading, Mike -- You received this message because you are subscribed

[Proto-Scripty] Re: Prototype and Galleria.js

2010-01-19 Thread Mike Santini
, 12:31 pm, Mike Santini dwarfthem...@gmail.com wrote: thanks for the reply. I'm trying this, but i'm fairly sure i'm doing it wrong. I'm not much of a developer. let me explain what i'm doing so that it may better help with things. I'm making a simple portfolio website for my gf using

[Proto-Scripty] Prototype and Galleria.js

2010-01-12 Thread Mike Santini
Greetings, I'm still new at this, but here is my problem. I'm currently using prototype and script.aculo.us for animations on my a website. I want to use galleria.js for an image gallery, but i can't seem to get them to cooperate. I've used jQuery.noConflict(); and my animations run, but none

[Proto-Scripty] Re: Prototype and Galleria.js

2010-01-12 Thread Mike Santini
...@thecarmarketplace.com wrote: try assigning jquery to a new variable.. $j=jQuery.noConflict(); Alex Mcauleyhttp://www.thevacancymarket.com - Original Message - From: Mike Santini dwarfthem...@gmail.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent: Tuesday, January 12

[Proto-Scripty] Re: Status of script.aculo.us

2009-09-18 Thread Mike Kelly
in my browser (Firefox 3.5 on FreeBSD)... But, yeah, alpha, so I don't expect too much optimization just yet. But, thanks for the pointer. -- Mike Kelly --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype

[Proto-Scripty] Re: Help! Unable to defer function to run when interpreter is idle

2009-07-15 Thread Mike Glen
Paul Kim wrote: Basically, this is the error I get from firebug when I run slideshow.showSlide(i).defer(): slideshow.showSlide(i).defer() is undefined How can I defer the showSlide() function so that when users click on the buttons too quickly, it will wait for the interpreter to idle

[Proto-Scripty] Re: Drag and Drop problems

2009-07-09 Thread Mike
    - Original Message -     From: david david.brill...@gmail.com     To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com     Sent: Tuesday, June 30, 2009 11:29 AM     Subject: [Proto-Scripty] Re: Drag and Drop problems     Hi Mike,     for the first question, I think

[Proto-Scripty] Drag and Drop problems

2009-06-30 Thread Mike
I am making a drag-and-drop editor thing using scriptaculous. However, when I dynamically add an element, it takes the size of the div it is being placed into. Then, when I drag it, I don't have access to any other elements that are already in the div. Here is the javascript functions I created:

[Proto-Scripty] Re: Drag and Drop problems

2009-06-30 Thread Mike
Alex - Original Message - From: david david.brill...@gmail.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent: Tuesday, June 30, 2009 11:29 AM Subject: [Proto-Scripty] Re: Drag and Drop problems Hi Mike, for the first question, I think

[Proto-Scripty] Effect.Move position 'relative' problem in IE

2009-06-29 Thread Mike Glen
++; } } /script script type=text/javascript $('hidebutton').observe( 'click', function( event ){ toggle_menu( event ); }); var show_menu = 1; /script /body /html Thanks Mike --~--~-~--~~~---~--~~ You received

[Proto-Scripty] Re: Dragged and Confused

2009-01-27 Thread Mike
Solved -- seems I was missing a .bind() earlier in my call chain. - Mike On Jan 26, 3:52 pm, Mike michael.j.can...@gmail.com wrote: This is some working code that makes a Draggable:   this.draggable = new Draggable(ts.up(div.rsrcRow), {       revert: true,       ghosting: true

[Proto-Scripty] Dragged and Confused

2009-01-26 Thread Mike
-wrapper. What am I missing here? TIA, Mike --~--~-~--~~~---~--~~ 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