OT: js help

2006-03-03 Thread Tim Do
Hi, I'm trying to passing values from a popup back to the parent window. In the popup window, I have a select box (multiple). I want to pass the selected items back to the parent window but it is only passing back the first value select not all the values selected in the drop down. Here is what I

RE: OT: JS help

2003-12-09 Thread Schuster, Steven
Bingo, exactly what I said. -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 2:25 PM To: CF-Talk Subject: Re: OT: JS help JS Popup browsers are called like this: window.open('http://www.mydomain.com/pagename.html',&

Re: OT: JS help

2003-12-09 Thread Ben Doom
The browser will *always* prompt the user that they are leaving a secure area (this is a feature not a bug) unless you open a secure URL in the flyout window. --Ben Tim Do wrote: > Hello all, > > > I'm trying to use a calendar custom tag (cf_formFieldCalendar) inside a > secure directory.   

Re: OT: JS help

2003-12-09 Thread Cutter (CF-Talk)
JS Popup browsers are called like this: window.open('http://www.mydomain.com/pagename.html','windowname','[attributes]'); This code is in the code of your custom tag. You must adjust this code to say "https:" instead of "http:". If the tag calls the popup page as a relative link rather than an

OT: JS help

2003-12-09 Thread Tim Do
Hello all, I'm trying to use a calendar custom tag (cf_formFieldCalendar) inside a secure directory.   Inside the tag it has a window.open command that spawns a window.  When it does, the browser prompts that you're leaving a secure area.  The tag is inside the secure directory.  Can anybody tel

OT: JS help

2003-06-04 Thread Kris Pilles
Ok, this is an odd request but: I was curiosu if it is possible with javascript to reference the value of the text contained inbetween the Thevalue Any help would be awesome. I need to do this with JS only Thanks Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C

RE: OT JS Help

2002-11-22 Thread Lofback, Chris
> -Original Message- > From: Tipton Josh (orl1jdt) [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 22, 2002 1:32 PM > To: CF-Talk > Subject: OT JS Help > > > I have a set date already and I want to make sure that the > date entered is > not higher than the cur

RE: OT JS Help

2002-11-22 Thread Rob Rohan
u put things in quotes, people think someone actually said it." http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 10:51 AM To: CF-Talk Subject: RE: OT JS

RE: OT JS Help

2002-11-22 Thread Tim Do
mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 10:32 AM To: CF-Talk Subject: OT JS Help I have a set date already and I want to make sure that the date entered is not higher than the current set date and if so then a warning would show. In my reasearch js kind of bites when it comes to da

OT JS Help

2002-11-22 Thread Tipton Josh (orl1jdt)
I have a set date already and I want to make sure that the date entered is not higher than the current set date and if so then a warning would show. In my reasearch js kind of bites when it comes to dates so I need some help. In short I want to make sure that date1 !> an entered form value. Tha