I have not used the plugin but had some issues with ckeditor in a web2py component. This worked for me:
in html file: <script type="text/javascript" src="{{=URL(request.application,'static','js/ckeditor/ckeditor.js')}}"></script> <script type="text/javascript" src="{{=URL(request.application,'static','js/ckeditor/adapters/jquery.js')}}"></script> in .load file <script> // enable html editing in text boxes. Destroy/replace needed to work as component loaded multiple times. $(document).ready(function() { $('textarea.ckeditor').each(function(){ name=$(this).attr('id') if (CKEDITOR.instances[name]) CKEDITOR.instances[name].destroy(true); CKEDITOR.replace(name) }) }) </script> On Wednesday, 29 August 2012 06:00:17 UTC+1, Picheth wrote: > > I have a problem with the ckeditor function LOAD (....., ajax = True) > > error : It pass the wrong part. > > please .. any help, cues or snippets of codes to accomplish this ... will > be greatly appreciated > > Picheth. > --