I have the same problem. If you look at this page

http://portal.bildung.hessen.de/service/etc/gaestebuch/manage_addZecomGuestbookItemForm?gui=2

and move the cursor over "...?", the help is shown in popup-windows.

If the forms.Field could be extended with one more parameter "..,
help=None)", I could save these help-infos. By subclassing the new
help-infos could be shown in a way like this (xzy=javascript):

class myForm ( forms.Form ) :
 """ """
 def as_table(self):
   left_item = '<th><td class="introblock"><b>%(label)s</b> <a
href="xyz">...?</a></td></th>'
   right_item = '<td>%(errors)s%(field)s</td>'
   "Returns this form rendered as HTML <tr>s -- excluding the
<table></table>."
   return self._html_output(u'<tr>'+left_item+right_item+'</tr>',
                             u'<tr><td colspan="2">%s</td></tr>',
'</td></tr>', False)

By the way: The colon in "bf.label_tag(escape(bf.label + ':'))" should
be removed. In tables the are not necessary.

Hans


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to