On Fri, 28 Jul 2006 16:08:14 -0000
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:

> 
> If you are creating your own manipulator and using that you can
> use the form field LargeTextField where you can specify the row
> and columns.
> 
> class LargeTextField(TextField):
>           def __init__(self, field_name, rows=10, cols=40,
> is_required=False, validator_list=None, maxlength=None):
> 
> Otherwise, css is the best option. 

Thanks for the replies - I'm not a big fan of mucking with the css
or anything in the django source tree so my solution was close to
this - in models.py I created a subclass of
django.forms.LargeTextField and
django.db.models.fields.LargeTextField:

from django.forms import LargeTextField
from django.db.models.fields import TextField

class MyLargeTextField(LargeTextField):
   def __init__(self, *args, **kwargs):
      kwargs['rows'] = 3
      kwargs['cols'] = 60
      LargeTextField.__init__(self, *args, **kwargs)

class MyTextField(TextField):
   def get_manipulator_field_objs(self):
      return [MyLargeTextField]

class SomeData:
   stuff = MyTextField('Some Stuff')

I'm not particularily happy with this either as it'd be nice to
have the rows/cols be params that can be passed in.

Josh

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to