Re: child window

2001-04-16 Thread Seth Weiss
childwindow.focus() - Original Message - From: "Robert Orlini" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 10:00 AM Subject: child window This isn't a CF question, but does anyone know what to add to a pop-window JavaScript code to make the child

Re: child window

2001-04-16 Thread Seth Weiss
Here is a little snip I use for this -- a little clearer than the last post: ! script language=javascript function newwindow(x) { childwindow=window.open( x, 'windowname', 'scrollbars=yes,width=460,height=400,toolbar=no') childwindow.focus() } /script

Re: text box output truncation

2001-04-16 Thread Seth Weiss
My understanding of trim is that it removes leading and trailing spaces only and not spaces on the interior. If the variables are url, then urlencodedformat() function might be appropriate. Seth - Original Message - From: "Judith Taylor" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

Re: returns in text boxes?

2001-04-02 Thread Seth Weiss
Personally, I like paragraphformat() as long as it is understood that it converts a single newline pair to white space and a double pair to a p tag. Also, I would think you would have to use at least a virtual or soft wrap attribute otherwise Netscape will just go off the side of the page... Seth