To fix the problem with the form, put the form tags outside the table tags.
<form...>
    <td>...</td>
</form>
That will remove the line break.

To refresh the opening window, you have to use the javascript window.open()
to open the new popup (no target=new...).
Then in the popup, execute the window.opener.location.reload().

jon
----- Original Message -----
From: "rkern - Prolynx" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, June 07, 2001 11:48 AM
Subject: Forcing a refresh


> To all,
> I have a general question that has me stumped for the moment.
>
> I have a form with a form button to process a change to a database.
> That works fine and after submitting the form updates with the new
> value.  However, the form takes up a lot of space when confined to a
> <TD> element (it seems to have a line break included).  The result is a
> table using a large amount of space.
>
> To reduce the space I made the update a link to another page in a
> floating window.  The update works well as a new javascript window,
> after the SQL update I close the window but the orginal page does not
> show the new data until manually refreshed.
>
> This is the problem, I need to refresh the original page with the new DB
> data.  I've tried <meta> refresh on the original page, but results in
> constant flicker and other non desireable  behavior.  Adding a
> <CFLocation> on the window.close() page does not close the window and
> shows the update in the window.
>
> Any suggestions?
> Thanks
> Richard
>
>
> Archives: http://www.mail-archive.com/[email protected]/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to