Re: [web2py] Re: Using tinymce for text areas of in component views

2016-02-17 Thread PRACHI VAKHARIA
I tried that and it did *NOT* work with *Web2Py Components* —» *http://web2py.com/books/default/chapter/29/12/components-and-plugins#Components--LOAD-and-Ajax* But it does work well on normal

Re: [web2py] Re: Using tinymce for text areas of in component views

2016-02-17 Thread Javier Pepe
Hello This work for me: Controller: def textarea(): form=FORM('Texto:', TEXTAREA(_name='texto', requires=IS_NOT_EMPTY(),_id='mytextarea'), INPUT(_type='submit')) return locals() View: tinymce.init({ selector: '#mytextarea' }); {{extend

[web2py] Re: Using tinymce for text areas of in component views

2016-02-17 Thread PRACHI VAKHARIA
- Can you please post your codes for making TinyMCE work with web2py Components? - It will allow to get a better understanding of how you applied it within web2py Components. Thanks! *— PRACHI* On Saturday, 6 November 2010 01:29:25 UTC-4, Luther Goh Lu Feng wrote: > > I am

[web2py] Re: Using tinymce for text areas of in component views

2010-11-05 Thread Luther Goh Lu Feng
Erm I know the issue already. Too complex to put in words. On Nov 6, 12:31 am, Luther Goh Lu Feng elf...@yahoo.com wrote: I have implemeted the basic tinymce editor here:http:// wiki.moxiecode.com/index.php/ TinyMCE:For_Dummies#To_create_a_very_simple_TinyMCE_wysiwyg_Editor In a normal view,

[web2py] Re: Using tinymce for text areas of in component views

2010-11-05 Thread Luther Goh Lu Feng
I am putting this link here http://tinymce.moxiecode.com/punbb/viewtopic.php?id=28 as this is the solution to problematic form submissions. tinyMCE.triggerSave() might need to be called if you are using ajax or components for your form submission. Hope this will be useful to someone who searches