Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form checkboxes in a frame, submit outside the frame

Status
Not open for further replies.

dswitzer

Technical User
Aug 2, 2002
298
US
I've been reading posts - but didn't see one on this topic.

I have a form:

<code>
<form stuff>
<input checkbox 1>
<input checkbox 2>
<input checkbox 3>
<input submit button>
</form>
</code>

What I want is the ability to scroll vertically through the checkboxes, yet have the submit button always visible at the bottom.

To this end, I put the checkboxes within a frame so I can scroll and discovered, as many of you already know, When I hit submit, I no longer have those checkbox values in my form (since they are on another page within the frame).

Any ideas?

Thanks.

 
Code:
<form stuff>
 <p style="width: 150px; height: 200px; [b]overflow: auto;[/b]">
  <input checkbox 1 />
  <input checkbox 2 />
  <input checkbox 3 />
 </p>
 <input submit button />
</form>
Looks like a frame, but doesn't act like one. Just adjust the sizes to your liking.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top