Changes between Version 2 and Version 3 of CustomWidgetsTinyMCE


Ignore:
Timestamp:
Nov 13, 2006, 9:02:48 PM (18 years ago)
Author:
Gary Wilson <gary.wilson@…>
Comment:

some wikification

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 =
    32
    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.
     3With 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.
    54
    65To start the custom widget, create a custom_widgets.py file in your project folder
     
    9695
    9796
    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]]
     97This 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.
    102100
    103101
Back to Top