Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   HTML (http://www.velocityreviews.com/forums/f31-html.html)
-   -   form input text in table; how to fill table cell space (http://www.velocityreviews.com/forums/t557786-form-input-text-in-table-how-to-fill-table-cell-space.html)

sdf 12-06-2007 02:30 PM

form input text in table; how to fill table cell space
 
I'm trying to create a table of form input text cells, like this:

<form>
<table>
<thead>
<tr>
<th>First Column</th>
<th>Second Column</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="r1c1" /></td>
<td><input type="text" name="r1c2" /></td>
</tr>
<tr>
<td><input type="text" name="r2c1" /></td>
<td><input type="text" name="r2c2" /></td>
</tr>
</tbody>
</table>
</form>
</p>

Is there a way the text input window can be defined to fill the cell
area no matter
what size the table is? I could define input's size attribute, I
tihnk, if the table
were of a set size, but the table size can vary.

Thanks.

Adrienne Boswell 12-06-2007 03:14 PM

Re: form input text in table; how to fill table cell space
 
Gazing into my crystal ball I observed sdf <hfs2@yahoo.com> writing in
news:cd0cdabc-86af-4efb-a98f-3bc2e8fd42af@e1g2000hsh.googlegroups.com:

> I'm trying to create a table of form input text cells, like this:
>
><form>
><table>
><thead>
> <tr>
> <th>First Column</th>
> <th>Second Column</th>
> </tr>
></thead>
><tbody>
> <tr>
> <td><input type="text" name="r1c1" /></td>
> <td><input type="text" name="r1c2" /></td>
> </tr>
> <tr>
> <td><input type="text" name="r2c1" /></td>
> <td><input type="text" name="r2c2" /></td>
> </tr>
></tbody>
></table>
></form>
></p>
>
> Is there a way the text input window can be defined to fill the cell
> area no matter
> what size the table is? I could define input's size attribute, I
> tihnk, if the table
> were of a set size, but the table size can vary.
>
> Thanks.
>


Better:
<form method="post" action="someurl">
<fieldset><legend>Form or section title</legend>
<label for="field1">Field1 </label> <input type="text" name="field1"
id="field1"><br>
<label for="field2">Field2 </label> <input type="text" name="field2"
id="field2"><br>
<p><input type="submit" value="Submit"></p>
</fieldset>
</form>

Replace field with appropriate field names. R1C1 is not really going to
help you when doing server side form processing - are you going to
remember what R1C1 is when you are get the information back from the
client?

The user also needs some kind of labeling so they know what information
should be put into the field.

The elements can be styled with CSS to be whatever width you desire.
Have a look at http://www.intraproducts.com/usenet/requiredform.asp .
This form is in ASP but can easily be converted to other languages, and
the markup, CSS, and server side processing are included.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share


Jonathan N. Little 12-06-2007 03:16 PM

Re: form input text in table; how to fill table cell space
 
sdf wrote:
> I'm trying to create a table of form input text cells, like this:
>
> <form>
> <table>
> <thead>
> <tr>
> <th>First Column</th>
> <th>Second Column</th>
> </tr>
> </thead>
> <tbody>
> <tr>
> <td><input type="text" name="r1c1" /></td>
> <td><input type="text" name="r1c2" /></td>
> </tr>
> <tr>
> <td><input type="text" name="r2c1" /></td>
> <td><input type="text" name="r2c2" /></td>
> </tr>
> </tbody>
> </table>
> </form>
> </p>
>
> Is there a way the text input window can be defined to fill the cell
> area no matter
> what size the table is? I could define input's size attribute, I
> tihnk, if the table
> were of a set size, but the table size can vary.



Firstly you know the table will only be as wide as it needs to be for
the content, so I will set it here for the demonstration

table { width: 90% }

Now I can make the inputs 100% but they will overtake any cell padding
so I will use 99%

td input { width: 99% }



--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com

sdf 12-06-2007 03:29 PM

Re: form input text in table; how to fill table cell space
 
Thanks to both of you, Little and Boswell. - sdf


All times are GMT. The time now is 08:56 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57