I have been having some trouble setting the "convert_urls" option for
TurboTinyMCE. According to the docstring for this widget I should be
able to pass it a mce_options parameter when it is created (or
displayed) and have it add those options to the list. If I do so it
wipes out all of the default entries in mce_options, which means
TinyMCE does not start properly.
Here is what I think I should be doing:
sampleForm = widgets.TableForm(fields=[
TinyMCE(name="sample",
mce_options=dict(convert_urls="false"),
...
I have this working for now by reaching into the TinyMCE widget and
updating mce_options directly before I instantiate that class, but I
don't really like that solution. Is there something I am doing wrong
that is keeping this from working correctly?
-Adam
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---