I'm just playing with
http://svn.toscat.net/tg_tutorial/trunk/tgsimpleblog/
The database is MySQL.
Part of the model is :
class BlogPost(BlogObject):
title = UnicodeCol(alternateID = True, length=255)
text = UnicodeCol()
comments = MultipleJoin("BlogComment", joinColumn="post_id")
The corresponding form is :
class BlogPostFields(WidgetsList):
title = TextField(validator=String(not_empty=True, max=255))
text = TinyMCE(validator=String(not_empty=True))
class BlogPostForm(TableForm):
fields = BlogPostFields()
I would like to understand why I can enter & save latin1 accentued
characters in TinyMCE and ca'nt in TextField.
Thanks for your help.
Pierre
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---