Re: How do I make a TextArea box in a form bigger?

2007-03-15 Thread Kenneth Gonsalves
On 16-Mar-07, at 10:31 AM, Michael Lake wrote: > Hi all > >>> On 14-Mar-07, at 12:02 PM, Michael Lake wrote: The textarea is about two lines high only. I want the text entry box to be much bigger as it will be holding a full page of text ... > > Kenneth helped out and suggested this: >

Re: How do I make a TextArea box in a form bigger?

2007-03-15 Thread Michael Lake
Hi all >>On 14-Mar-07, at 12:02 PM, Michael Lake wrote: >>>The textarea is about two lines high only. I want the text entry >>>box to be much bigger as it will be holding a full page of text ... Kenneth helped out and suggested this: >>widgets.TextArea(attrs={'rows':10,'cols':60}) for example T

Re: How do I make a TextArea box in a form bigger?

2007-03-14 Thread [EMAIL PROTECTED]
Or give it an id or class and just set it in the CSS. On Mar 14, 1:58 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 14-Mar-07, at 12:02 PM, Michael Lake wrote: > > > The textarea is about two lines high only. I want the text entry > > box to be much > > bigger as it will be holding a full

Re: How do I make a TextArea box in a form bigger?

2007-03-13 Thread Kenneth Gonsalves
On 14-Mar-07, at 12:02 PM, Michael Lake wrote: > The textarea is about two lines high only. I want the text entry > box to be much > bigger as it will be holding a full page of text including HTML tags. widgets.TextArea(attrs={'rows':10,'cols':60}) for example -- regards kg http://lawgon.l

How do I make a TextArea box in a form bigger?

2007-03-13 Thread Michael Lake
Hi all I'm having problems trying to understand how to customise an element in a form. Im using a TextField and I want the TextArea element to be much bigger in size. From reading I gather one uses widgets. I found this page but it's quite different from the code in my model or view. http://ww