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?
<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?