Steven Armstrong írta:

>I've extended some of django's built in model and form fields to accept 
>an additional kwarg named 'html_attributes'.
>
>It works like this:
>
>class Whatever(models.Model):
>   ...
>   title = models.CharField(maxlength=128,
>     html_attributes={
>       'size': 15,
>       'class': 'myCssClass'
>     }
>   )
>   content = models.TextField(
>     html_attributes={
>       'dojoType': 'Editor',
>       'items': 'formatBlock;textGroup;|;justifyGroup'
>     }
>   )
>   ...
>
>The fields are then rendered like:
><input type="text" id="id_title" class="vTextField required myCssClass" 
>name="title" size="15" value="" maxlength="128" />
>
><textarea rows="10" name="content" cols="40" class="vLargeTextField 
>required" id="id_content" dojoType="Editor" 
>items="formatBlock;textGroup;|;justifyGroup"></textarea>
>
>Not perfect, but works for me.
>I could wrap it up as a patch if someone's interested.
>  
>
I do. Backward compatible and does not hurt nobody(?).
That is perfect for me Steve, if you share i'll thank you.

Charlie.

-- 
"...s minden mestert kinevettem, ki nem nevetett önmagán."
GPG public key: http://www.rendszergazda.com/gpg/charlie-gpg-public-key.asc


--~--~---------~--~----~------------~-------~--~----~
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