Click to See Complete Forum and Search --> : frames


JulesTanner
06-16-2003, 04:10 PM
I am wanting to return results from a query into 2 separate frames. The reason is so the user will always be able to see the value of field1 and field2 while updating field3, field4, and field5.

<cfquery name="something" datasource="test">
select field1, field2, field3, field4, field5
from sometable
</cfquery>

RESULTS

frame1
<td>field1</td>
<td>field2</td>

frame2
<td><input type="text" name="field3" value=""></td>
<td><input type="text" name="field4" value=""></td>
<td><input type="text" name="field5" value=""></td>

When the user scrolls down, the 2 frames need to be in conjunction. Is this possible?

Jona
06-16-2003, 05:48 PM
I whipped this up real quick for you. Works only in IE: http://geocities.com/god_loves_07/fScroll_main.htm

Jona

hastx
06-16-2003, 09:00 PM
thats pretty cool jona. Dont know if i'd ever need it... but that is cool :cool:

PeOfEo
06-16-2003, 09:04 PM
oh wow thats cleaver. I dont know how practical it is but its neat.

Jona
06-17-2003, 01:36 PM
Thanks. ;) I could probably get it to work in Netscape... But for some reason pageYOffset isn't working right... I'll have to work on that later.

Jona