Re: [Moo] Re: Function being called additionally with each click

2014-01-21 Thread Jack Drysdale Jr
Unfortunately, I'm on a DoD network, and jsfiddle is blocked. @Sérgio: generateUpdates() is an AJaX call to a ColdFusion component (CFC) that runs a few queries with the form data, then inserts/updates another table with another query. Something is calling the saveValues() function once the fir

[Moo] Re: Function being called additionally with each click

2014-01-21 Thread Jack Drysdale Jr
No.. no change.. still increasing calls with each iteration. :( On Tuesday, January 21, 2014 9:11:12 AM UTC-6, Jack Drysdale Jr wrote: > > I tried adding 'eventClick' as a parameter, then eventClick.stop(). I'll > try your suggestion. > > Thank you, > > J

[Moo] Re: Function being called additionally with each click

2014-01-21 Thread Jack Drysdale Jr
I tried adding 'eventClick' as a parameter, then eventClick.stop(). I'll try your suggestion. Thank you, JD On Tuesday, January 21, 2014 8:55:14 AM UTC-6, Aicke Schulz wrote: > > Try to use preventDefault() in your click handler: > http://mootools.net/docs/core/Types/DOMEvent#DOMEvent:prevent

[Moo] Function being called additionally with each click

2014-01-21 Thread Jack Drysdale Jr
Hello, everyone. I've got a function that is being called an additional time for each time a button is clicked, and I can't figure out where the loop that is causing it is. HTML: JS: if ($('btnRun')){ $('btnRun').addEvent('click',function(){ *alert('This will only alert once.');* save

[Moo] Re: Searched for onComplete issues; none are close to what I'm experiencing.

2014-01-10 Thread Jack Drysdale Jr
var2:"val2"}. Now, we are slowly discovering more and more code that needs to have the variables in quotes. This was preventing the onSuccess from firing. Thank you, JD On Friday, January 10, 2014 8:14:08 AM UTC-6, Jack Drysdale Jr wrote: > > Sergio, > > Thanks for your re

[Moo] Re: Searched for onComplete issues; none are close to what I'm experiencing.

2014-01-10 Thread Jack Drysdale Jr
n(json, text){ > console.log(json, text); > > ? ie, is it empty? > > /Sergio > > > On Thursday, 9 January 2014 22:28:18 UTC+1, Jack Drysdale Jr wrote: >> >> Hello, everyone. >> >> I've got a function that is called whenever specific input field value

Re: [Moo] Searched for onComplete issues; none are close to what I'm experiencing.

2014-01-10 Thread Jack Drysdale Jr
tend/expect. > > Hope this helps. > > On Thu, Jan 9, 2014 at 1:49 PM, Jack Drysdale Jr > > > wrote: > >> Hi, johnnyf, >> >> Thanks for the quick reply. I cleared the cache and tried what you >> suggested. Unfortunately, no change. It still isn

Re: [Moo] Searched for onComplete issues; none are close to what I'm experiencing.

2014-01-09 Thread Jack Drysdale Jr
ery Solutions -- makers of MerusCase > 1736 Franklin Street, Suite 350 > Oakland, CA 94612 > 510.550.5000 Main > 925.997.3878 Mobile > 510-836-0915 Fax > j...@fuery.com > > > On Thu, Jan 9, 2014 at 1:28 PM, Jack Drysdale Jr > > > wrote: > >> Hello,

[Moo] Searched for onComplete issues; none are close to what I'm experiencing.

2014-01-09 Thread Jack Drysdale Jr
Hello, everyone. I've got a function that is called whenever specific input field values are changed. The onRequest is firing, no problem. But the onComplete does not do anything. At all. I've placed alerts, they don't fire. I used try/catch, nothing. var vtr = new Request.JSON({ >

Re: [Moo] Attempting to dynamically load Compat Inspector using MooTools 1.4.5/1.4

2013-10-02 Thread Jack Drysdale Jr
I placed an alert before the code that just displays the word "loaded". In FF/Chrome, before the page is done loading a js alert pops open with the word "loaded" and will load the rest of the page THEN the Compat Inspector after "OK" is clicked. In IE 7-10, before the page is done loading a js

Re: [Moo] Attempting to dynamically load Compat Inspector using MooTools 1.4.5/1.4

2013-10-02 Thread Jack Drysdale Jr
According to another developer that I've been asking about this: "IE has no event order management system, it is totally random." So the one browser that this needs to work in doesn't have the capability to make it work; at least, not for specific people, just all or none. I hate IE. Thank you

Re: [Moo] Attempting to dynamically load Compat Inspector using MooTools 1.4.5/1.4

2013-10-02 Thread Jack Drysdale Jr
1- Since it was never meant to run under anything less than IE9, I get a "'inspector.source' is null or not an object" message.. that's it. Even when hard-coded into the HEAD tag. 2- I realize that; I've read the instructions before downloading it and setting up a local copy to work with. I'm

[Moo] Re: Mootools and JQuery dont play nice....

2013-10-02 Thread Jack Drysdale Jr
You should never use two libraries together. You won't ALWAYS have issues, like this, but the chances are high that you will. Usually due to conflicting variables. Best suggestion that I can make (and I know you don't want to hear it) is to pick one of the libraries and stick with it, forsaki

[Moo] Re: Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-10-02 Thread Jack Drysdale Jr
8:05:44 AM UTC-5, Jack Drysdale Jr wrote: > > Chrome is not erroring; the modals close without incident in Chrome24, IE > v7-10, and FF21. We have not tested it in FF22, but we aren't allowed to > install anything and would have to submit a request to have FF22 installed, > f

[Moo] Attempting to dynamically load Compat Inspector using MooTools 1.4.5/1.4

2013-10-02 Thread Jack Drysdale Jr
Hello, everyone. I am attempting to dynamically load Microsoft's "IE 10 Compat Inspector" - based upon login (users shouldn't see it; developers should). We are using MooTools Core 1.4.5 and More 1.4. The document I am working on and compat inspector are one directory past webroot, the index.

[Moo] Re: Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-24 Thread Jack Drysdale Jr
are trying to > call undefined('id_of_container') and undefined is not a function, FF will > report that error. > if you try the same page in chrome you should see a message that should > look like > Uncaught TypeError: Object [object global] has no method '$

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-24 Thread Jack Drysdale Jr
erading document.uri that may > have affected you - is the popup in the same origin (domain/port/protocol)? > > > On 23 September 2013 21:33, Jack Drysdale Jr > > > wrote: > >> I'll check the 'this' and the 'window.name' and the loop. How d

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
I'm sorry.. do YOU have time to type 340 lines of code to get help with something that you're having issues with?? I seriously doubt it. No, 'idofcontainer' isn't a variable name, but an arbitrary name instead of the actual id of the element - DoD likes to be paranoid about security, so I'm pa

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
also may > be applicable mootools version used. > > On Monday, September 23, 2013, Jack Drysdale Jr wrote: > >> Hello, everyone. >> >> I'm new to MooTools (started working here in July 2013; I'm from a jQuery >> background), and have just started experien

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
The following is the best I can do, unfortunately: var modalWin = new Class({ > Implements: [Events,Options], > options: { > //defaults width, height, closeable, draggable, title, etc. > }, > initialize: function(options){ > var win = this; > //sets name, options, creates

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
jsFiddle is blocked, I cannot access it from work. :( On Monday, September 23, 2013 3:03:33 PM UTC-5, Jack Drysdale Jr wrote: > > *I accidentally replied to the email instead of coming directly here; if > this is a duplicate, I apologize. Below is my emailed response:* > > U

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
*I accidentally replied to the email instead of coming directly here; if this is a duplicate, I apologize. Below is my emailed response:* Unfortunately, I cannot provide a link, as this is a secure application that requires a login and there are no "demo" accounts. Plus, it's for DoD; my devel

Re: [Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
Unfortunately, I cannot provide a link, as this is a secure application that requires a login and there are no "demo" accounts. Plus, it's for DoD; my development system is isolated from the internet, so I can't copy/paste anything. The .js file that creates the class is quite large (340 lines of

[Moo] Anyone else experience issue in FF 23.0.1 with MooTools Core 1.4.5 & MooTools More 1.4.0.1?

2013-09-23 Thread Jack Drysdale Jr
Hello, everyone. I'm new to MooTools (started working here in July 2013; I'm from a jQuery background), and have just started experiencing an issue that didn't exist before upgrading a testing FF browser to 23.0.1. This issue is only in FireFox v23.0.1, not IE7/8/9/10, nor in Chrome 24, and di