Changes between Version 2 and Version 3 of CustomWidgetsTinyMCE
- Timestamp:
- Nov 13, 2006, 9:02:48 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CustomWidgetsTinyMCE
v2 v3 1 == Custom Widgets - TinyMCE == 2 Please Note - django.newforms is a work in progress 1 = Custom Widgets - TinyMCE = 3 2 4 With the introduction of the newforms module in revision 3944 came the functionality to create custom widgets for forms. Outlined below is the process of creating a custom reusable TinyMCE widget. 3 With the introduction of the newforms module in revision 3944 came the functionality to create custom widgets for forms. Outlined below is the process of creating a custom reusable TinyMCE widget. '''Please Note''' - django.newforms is a work in progress. 5 4 6 5 To start the custom widget, create a custom_widgets.py file in your project folder … … 96 95 97 96 98 This implementation isn't perfect by all means [[BR]] 99 1. It requires the template author to include the javascript file.[[BR]] 100 2. tinyMCE.init() is called each time the widget is used, this gives the benefit that you can have multiple tinyMCE text boxes with different settings.[[BR]] 101 3. ????[[BR]] 97 This implementation isn't perfect by all means 98 1. It requires the template author to include the javascript file. 99 1. tinyMCE.init() is called each time the widget is used, this gives the benefit that you can have multiple tinyMCE text boxes with different settings. 102 100 103 101