Donna
|
| Posted: 06/04/2002, 9:52 AM |
|
I am trying to come up with a much needed way to achieve a vertical scroll bar in my form. My page as 3 columns and several forms in each column. Preferably, I'd like a specific form to scroll after having predefined the form length in Codecharge. If that's not possible, I'd like to create a form with two fields, title and content. "Title" would be a label type and "Content" would be some type of field that cannot be edited and has a vertical scrollbar on the right (like that of a textarea).
Any ideas on how to accomplish this?
Thanks!
|
|
|
 |
Tony
|
| Posted: 06/05/2002, 1:00 AM |
|
Donna,
you can use frames, create three pages and locate each page in separate frame.
Or as you mentioned you can prevent textarea from editing but preserve scrolling. To do it place javascript code at the form's footer:
<SCRIPT Language="JavaScript">
document.form_name.textarea_field_name.readOnly = true;
</script>
|
|
|
 |
Donna
|
| Posted: 06/07/2002, 9:05 AM |
|
I didn't realize that when using a textarea, CC doesn't give the option to display the content using html. Is there a way around this? I'm trying really hard to come up with a way to scroll just a field instead of using frames.
BTW:I'm using php w/templates
Thanks!
|
|
|
 |
|