[Proto-Scripty] PeriodicalExecuter

2010-05-28 Thread Russell Keith
'; ** I want to stop the PeriodicalExecuter here ** } }); } Russell -- 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-scriptacul

[Proto-Scripty] Ajax in IE7 vs. IE8

2010-05-28 Thread Russell Keith
Ok this doesn't make any sense to me. The following code works in IE8 but not IE7. The Ajax calls never get fired according to my proxy software. I don't have the luxury of firebug since I am relegated to IE here at work. Any ideas? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0

RE: [Proto-Scripty] Ajax in IE7 vs. IE8

2010-05-28 Thread Russell Keith
It appears that IE7 doesn't like the port number added to the URL. Any thoughts on how to get around this? I have to have the port numbers. From: prototype-scriptaculous@googlegroups.com [mailto:prototype-scriptacul...@googlegroups.com] On Behalf Of Russell Keith Sent: Friday, May 28

RE: [Proto-Scripty] Ajax in IE7 vs. IE8

2010-05-28 Thread Russell Keith
-scriptaculous@googlegroups.com [mailto:prototype-scriptacul...@googlegroups.com] On Behalf Of Russell Keith Sent: Friday, May 28, 2010 4:24 PM To: prototype-scriptaculous@googlegroups.com Subject: RE: [Proto-Scripty] Ajax in IE7 vs. IE8 It appears that IE7 doesn't like the port number added

[Proto-Scripty] scrollTo

2010-03-22 Thread Russell Keith
I have a div that I am updating with text as processes complete. How can I use $(element).scrollTo(); to make sure it is always scrolled to the bottom? In my HTML I have this div div id=msgCenterContent/div In my js I have calls like this to update the user as to what is going on while

RE: [Proto-Scripty] scrollTo

2010-03-22 Thread Russell Keith
I figured out I can do it like this. $('msgCenterContent').scrollTop = $('msgCenterContent').scrollHeight; From: prototype-scriptaculous@googlegroups.com [mailto:prototype-scriptacul...@googlegroups.com] On Behalf Of Russell Keith Sent: Monday, March 22, 2010 12:25 PM To: prototype

[Proto-Scripty] Focus on element in iFrame.

2010-02-08 Thread Russell Keith
I have an iframe on a page with an ID of 'generateID'. There is a field on the page loaded in the iframe with and ID of 'type'. I want the 'type' field to have focus when I make the iframe visible. I want to do it from the parent window. I have tried the code below. Is there a way to make

RE: [Proto-Scripty] Re: Focus on element in iFrame.

2010-02-08 Thread Russell Keith
Perfect!!! Thank you. Respectfully, J. Russell Keith Employee Systems Analyst American Airlines Federal Credit Union 817.931.4459 Direct 800.483.0944 Fax russell.ke...@aacreditunion.org -Original Message- From: prototype-scriptaculous@googlegroups.com [mailto:prototype-scriptacul

RE: [Proto-Scripty] simple show / hide

2010-01-15 Thread Russell Keith
Give this a try and see if it shows what you need. You should be able to take this example and run with it. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en head

[Proto-Scripty] Forms

2009-10-29 Thread Russell Keith
Ok, maybe I'm just being dense, but I am reading the API for forms and I am getting nothing from it. What is proper use of the $F utility and what can it do for me? I have read the Form.Element.getValue and it means nothing to me. I have this form: form name=createPDF

[Proto-Scripty] Re: Forms

2009-10-29 Thread Russell Keith
:08 AM, Russell Keith wrote: Ok, maybe I'm just being dense, but I am reading the API for forms and I am getting nothing from it. What is proper use of the $F utility and what can it do for me? I have read the Form.Element.getValue and it means nothing to me. I have this form: form

[Proto-Scripty] Re: Forms

2009-10-29 Thread Russell Keith
] On Behalf Of Russell Keith Sent: Thursday, October 29, 2009 10:28 AM To: prototype-scriptaculous@googlegroups.com Subject: [Proto-Scripty] Re: Forms Then how is $F() any different than $()? Also, any idea why I can't get my form to submit. I have been all over Google and can't figure it out

[Proto-Scripty] Slightly off topic about CSS

2009-09-18 Thread Russell Keith
I have the following CSS class I am adding with Element.addClassName tr.selected{ background: url(/images/ArrowSelection.gif) no-repeat; background-color: #AA; } My issue is that it is also adding the background image to each td in the tr. Any idea how to

[Proto-Scripty] checkboxes

2009-09-14 Thread Russell Keith
I have the following code that works just fine. I can't figure out how to tell how many check boxes are checked. I want to limit it to four check boxes. Any help would be appreciated, or even a point in the right direction. $$('input.check').each(function(elem){ elem.observe('click',

[Proto-Scripty] observe by class name

2009-08-17 Thread Russell Keith
I am building a css table using div elements. I am trying to observe all the DIVs with a class name of oddRow but I keep getting JS errors. This is my first attempt at observing an entire class. Can someone please point me in the right direction. I thought the $$ method returned an array so I

[Proto-Scripty] Re: observe by class name

2009-08-17 Thread Russell Keith
[mailto:prototype-scriptacul...@googlegroups.com] On Behalf Of Russell Keith Sent: Monday, August 17, 2009 11:48 AM To: prototype-scriptaculous@googlegroups.com Subject: [Proto-Scripty] observe by class name I am building a css table using div elements. I am trying to observe all the DIVs with a class name

[Proto-Scripty] Re: Trouble getting started with Prototype

2009-05-29 Thread Russell Keith
It appears the script tag must have a closing tag /script. So this SCRIPT type=text/javascript src=javascriptPrototype.js / Should be this SCRIPT type=text/javascript src=javascriptPrototype.js/script Russell -Original Message- From: prototype-scriptaculous@googlegroups.com

[Proto-Scripty] Re: help with ajax.

2009-05-06 Thread Russell Keith
I am running the vendor code and my prototype code from the same folder on the same server with almost the same file name. The only difference is I added pt to the filename that my prototype code is trying to run from. http://server_a/ajaxIG.html is the vendor code and it calls

[Proto-Scripty] Re: help with ajax.

2009-05-06 Thread Russell Keith
appear to be trying to make the call to the web service. -Original Message- From: prototype-scriptaculous@googlegroups.com [mailto:prototype-scriptacul...@googlegroups.com] On Behalf Of Russell Keith Sent: Wednesday, May 06, 2009 8:15 AM To: prototype-scriptaculous@googlegroups.com Subject

[Proto-Scripty] Re: help with ajax.

2009-05-05 Thread Russell Keith
I have dumbed down this code even more and still can't get the ajax request to fire. Any suggestions would be great. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml; / head meta

[Proto-Scripty] Re: help with ajax.

2009-05-05 Thread Russell Keith
I am sending the request from one internal server to another server. However one of the servers is a Linux box that wouldn't be part of the Microsoft domain. But the code I have from the vendor in this http://pastie.org/462963 works just fine and I would prefer to use prototype. J. Russell

[Proto-Scripty] Re: help with ajax.

2009-05-05 Thread Russell Keith
Ok I get that you can't request across domains, but it doesn't explain why my code on pastie (http://pastie.org/462963) works but the prototype code doesn't. J. Russell Keith, MCDST Branch Suite Administrator American Airlines Federal Credit Union 817.931.4459 Direct 817.963.9541 Fax

[Proto-Scripty] Re: help with ajax.

2009-05-05 Thread Russell Keith
But terrain is the name of the server. I am sending xml data to a webservice on this server. J. Russell Keith, MCDST Branch Suite Administrator American Airlines Federal Credit Union 817.931.4459 Direct 817.931.9541 Fax russell.ke...@aacreditunion.org - Original Message - From

[Proto-Scripty] Get an array from PHP via Ajax.Request

2009-04-29 Thread Russell Keith
When doing calling Ajax.Request is there a way to take an array returned by PHP and read it into a JavaScript array? Or would I need to split the array in PHP to a comma separated string then read it back into an array in JavaScript? J. Russell Keith, MCDST Branch Suite Administrator

[Proto-Scripty] url query string

2009-04-02 Thread Russell Keith
Does prototype or scriptaculous offer a way to parse a query string in a URL? I am creating a simple page that will redirect a user as a band aid for poor programming choices made by a vendor. I need this to all be done in JavaScript. I found several solutions on Google but wondered if

[Proto-Scripty] observe any change in the window

2009-03-27 Thread Russell Keith
I have an iframe and I am using the onbeforeunload to prevent data loss. What I need to do is set a variable called save to 0 after any change is made within the frame. I tried this but it doesn't work: document.observe('change', function(){ save=0

[Proto-Scripty] effect.opacity issues

2009-02-28 Thread Russell
Hi There, First off let me say I am new to all of this, so if I sound a bit lost it is because I am :) I am trying to use the Effect.Opacity event to fade in a div when a user clicks the link. As this DIV sits in the main page, it's default state is hidden, so when clicking the link the DIV's

[Proto-Scripty] Observe an event with multiple elements.

2009-01-08 Thread Russell
I have the following script to highlight a row in table when a checkbox is checked. I need to adapt it to work with many rows where the id = 5day_#. The number is equal to the arbitrary row id I am getting from the database. Is there a way to insert a wildcard in the element name or am I just

[Proto-Scripty] multiple elements with the same id

2008-12-11 Thread Russell
I have a table with 12 rows with an id of row. The following code works great for the first row but not the following rows. How can I make this work without creating both entries 12 times. script type=text/javascript Event.observe(window, 'load', function() { $('row').observe(

[Proto-Scripty] Re: Ajax.InPlaceEditor value needs to be part of the URL

2008-12-10 Thread Russell
on the wiki: http://github.com/madrobby/scriptaculous/wikis/ajax-inplaceeditor   Walter On Dec 8, 2008, at 3:04 PM, Russell wrote: I am using the CodeIgniter framework for PHP and need the value from my InPlaceEditor to pass as a straight value (i.e. /something) instaed of the way it does