|
From: Dieter S. <dsi...@sq...> - 2001-07-23 15:27:45
|
Hi Mike!
Instead of
<input name="description_$i" value=$form->{"description_$i"} size=35>
you use
<textarea name="description_$i" rows=2 cols=35 nowrap>
$form->{"description_$i"}
</textarea>
You can use any html tags in the text to control how it will look like on
the invoice.
I would also adjust the rows to the number of lines the text will take up
in a 35 character column space and expand and shrink the field
dynamically.
The description field is a text field and can hold about 8k of data.
Dieter Simader http://www.sql-ledger.org (780) 472-8161
DWS Systems Inc. Accounting Software Fax: 478-5281
=========== On a clear disk you can seek forever ===========
On Sun, 22 Jul 2001, Michael Bush wrote:
> Hi Dieter:
>
> What are the downsides of changing the Description field from text to
> textarea? If ok, how would you recommend making the change?
>
> Regards,
>
> Mike Bush
>
|