[fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-26 Thread oc
Thanks Jurian! I changed the path and added headScript()->appendScript('')?> in my layout and it worked. Jurian Sluiman wrote: > > The scriptPath / scriptFile is for public access, so from your webroot. > > So if you have http://mydomain.com and the webroot is located in > /var/www/mydomain

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-25 Thread Jurian Sluiman
The scriptPath / scriptFile is for public access, so from your webroot. So if you have http://mydomain.com and the webroot is located in /var/www/mydomain/public, you should not point to /var/www/mydomain/public/js/tiny_mce/tiny_mce.js, but instead just to the file's public location: /js/tiny_m

[fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-25 Thread oc
I see a text area now. But I dont see the tinymce editor. like this: Message In Sozfo_View_Helper_TinyMce under _renderScript(), the variable $script seems to give the right path like this: ////htdocs/.../application/../public/js/tiny_mce/tiny_mce.js but why d

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-24 Thread Jurian Sluiman
On Tuesday 24 May 2011 15:27:59 oc wrote: > I have a problem following this tutorial coz Im new in ZF. What I did is > this: > In my tinymce.ini I copied and paste it in my > /application/configs/tinymce.ini > and changed the scriptPath to > scriptPath = APPLICATION_PATH "/../public/js/tiny_mce/" >

[fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-24 Thread oc
Jurian Sluiman wrote: > > It's mentioned a few messages back, but here it is: > http://juriansluiman.nl/en/blog/article/100/improved-tinymce-solution-for-the- > zend-framework > > Regards, Jurian > -- > Jurian Sluiman > CTO Soflomo V.O.F. > http://soflomo.com > > On Tuesday 02 Mar 2010 12:57:

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2010-03-02 Thread Jurian Sluiman
It's mentioned a few messages back, but here it is: http://juriansluiman.nl/en/blog/article/100/improved-tinymce-solution-for-the- zend-framework Regards, Jurian -- Jurian Sluiman CTO Soflomo V.O.F. http://soflomo.com On Tuesday 02 Mar 2010 12:57:08 tonystamp wrote: > Do you have a link to that

[fw-general] Re: how to implement WYSIWYG editor on zend framework

2010-03-02 Thread tonystamp
Do you have a link to that tutorial Jurian. Thanks. -- View this message in context: http://n4.nabble.com/how-to-implement-WYSIWYG-editor-on-zend-framework-tp1569326p1574916.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2010-03-01 Thread Jurian Sluiman
In my tutorial it's also possible to have multiple editors on one page. Just add the elements as much as you want. The TinyMCE init code is only added one. Regards, Jurian -- Jurian Sluiman CTO Soflomo V.O.F. http://soflomo.com On Monday 01 Mar 2010 18:11:31 George Secrieru wrote: > If you thin

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2010-03-01 Thread Hector Virgen
If you include the CKEditor library on all of your pages, it will automatically convert all textareas with a class name of "ckeditor" to CKEditor instances. That's the fastest and easiest way to get CKEditor on your page: $textareaElement->setAttrib('class', 'ckeditor'); But if you need a bit mor

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2010-03-01 Thread George Secrieru
If you think you could need this same editor in more than one place, you could write a view helper that returns the *CKEDITOR.replace* code. Regards, George On Thu, Feb 25, 2010 at 5:36 PM, Kuzma <01gar...@gmail.com> wrote: > > Here is a good tutorial: > > http://juriansluiman.nl/en/blog/article

[fw-general] Re: how to implement WYSIWYG editor on zend framework

2010-02-25 Thread Kuzma
Here is a good tutorial: http://juriansluiman.nl/en/blog/article/100/improved-tinymce-solution-for-the-zend-framework#lead -- View this message in context: http://n4.nabble.com/how-to-implement-WYSIWYG-editor-on-zend-framework-tp1569326p1569694.html Sent from the Zend Framework mailing list arch