TinyMCE bug: http://readystate4.com/2009/05/15/tinymce-typeerror-twindocument-is-null-in-firebug-console/

2009-06-18 Thread Fernando Wermus
I am trying to run a TinyMCE in a ModalWindow. If the modalWindow is closed TinyMCE requires removes some instances through its api: tinyMCE.execCommand('mceRemoveControl', false, 'idTextArea'); tinyMCE.execCommand('mceAddControl', false, 'idTextArea'); But modalWindow close button didn't inform

Re: Could TinyMCE Upload pictures or files

2009-06-05 Thread rolandpeng
I meet this requirement,too. anyone have solutions? or any comments will be welcome. thanks. Nino.Martinez wrote: Add a upload field to the page.. And reference that from tinymce? Mead wrote: Hello All, Could TinyMCE upload pictures or files? I run the example of TinyMCE(from wicket

Re: Could TinyMCE Upload pictures or files

2009-06-05 Thread Janos Cserep
I'm using the following custom tinymce javascript initialization (I don't use the default which comes with wicket-tinymce, but put this together manually). I override the image button of tinymce so the callback can change the whole panel and display a selector one. The user can use the selector

TinyMCE resources directory

2009-05-12 Thread John Armstrong
This is probably a basic question and it may not even be wicket related but I was hoping for a tip. I am using wicket under tomcat. I am -not- using Maven for building it so no quickstart exists. Here is what happens, in my dev environment (Eclipse) tinymce works fine. I import the Jar

problems with tinymce

2009-05-01 Thread balingen tame
I am having lot of troubles with tinymce ,First please suggest me where to get working tinymce java script files so that I can build the working tinymce, I copied text from ms-word to tinymce and surprisingly nothing gets posted to server, second If I use tinymce in a modelwindow with a panel

Re: problems with tinymce

2009-05-01 Thread Jeremy Thomerson
Code helps us help you. Post code for us to help you. I would suspect that tinymce js files come with the tinymce integration. If not, the place to get working tinymce files would be from tinymce's website. -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 1, 2009 at 10:02 AM

Popup Editor using TinyMCE and ModalWindow

2009-04-24 Thread sshark
Hi, I want to construct popup WYSIWYG editor using TinyMCE and ModalWindow. What I got was an ordinary un-mocked up plain textarea in the pop up dialog box. I have included my codes, the page and panel here. TinyMCE works well in the page. Did I miss any settings? Any suggestion? Thank you

tinymce textarea in a modal window not letting to type

2009-04-24 Thread balingen tame
I am using tinymce text area in several pages, today I added this to a wicket modal window, the tinymce textarea shows up fine but when I type nothing goes into it , its not disabled , I can click on the editor buttons, it does not take the mouse , please help me resolve this

Re: making tinymce textarea read only

2009-04-22 Thread Swanthe Lindgren
I solved the problem by downloading the tinymce source from the svn repository together with the javascript lib from tinymce.moxiecode.com and repacking it. The latest version of the scripts handles the readonly option correct. //Swanthe tubin gen wrote: I am trying to make teaxarea

Re: tinymce textarea

2009-04-22 Thread fachhoch
Tinymce text is formatted with html and when I add text to label i see the text with html , please tell me how can I tell wicket that model also has html tags and browser should interpet them and not display ? If I set model of a label as html text I am expecting to seehtml parsed

Re: tinymce textarea

2009-04-22 Thread Swanthe Lindgren
I suggest that you display the text in a read only tinymce text area. TinyMCESettings mceSettings = new TinyMCESettings(Theme.advanced); mceSettings.addCustomSetting(readonly:true); This only works if you update the tinymce javascripts as in http://www.nabble.com/Re%3A-making-tinymce-textarea

Re: tinymce textarea

2009-04-21 Thread Swanthe Lindgren
Try add TinyMceAjaxSubmitModifier to your submit button //Swanthe tubin gen wrote: I am trying to make my text editor (text area ) to rich text eitors using timymce.First I tried wicket timymce behaviour , the problem is the tinymce java scriopt is repalce my textarea html with an iframe

Re: tinymce textarea

2009-04-21 Thread fachhoch
It worked , that's good, need one more suggestion , Usually without tinymce we show comments to display inside a pre tag to retain the line breaks etc , but in case of tinymce what's the best way to display comments ? Linkan wrote: Try add TinyMceAjaxSubmitModifier to your submit

making tinymce textarea read only

2009-04-21 Thread tubin gen
I am trying to make teaxarea with a tinymce behavior readonly below is the code for that , but this is not working , please help me make this readonly. tinyMCESettings.addCustomSetting(readonly : true);

Re: making tinymce textarea read only

2009-04-21 Thread fachhoch
-read-only.png editable http://www.nabble.com/file/p23160955/textarea-editable.png please tell me how to resolve this tinymce settings for readonly TinyMCESettings tinyMCESettings= new TinyMCESettings(Theme.advanced); tinyMCESettings.addCustomSetting

tinymce textarea

2009-04-20 Thread tubin gen
I am trying to make my text editor (text area ) to rich text eitors using timymce.First I tried wicket timymce behaviour , the problem is the tinymce java scriopt is repalce my textarea html with an iframe this is my html , but the style=display: none; is added by tinymce textarea

Re: tinymce textarea

2009-04-20 Thread jcgarciam
Agreed with @Jeremy, I have used to TinyMCE myself to update a CLOB fields mapped to my Entity Object and its value get submitted like a charm, but i remember seen this problem in my project a while before, when the form was submitted using Ajax, since i didn't make too much research i just

Re: tinymce textarea

2009-04-20 Thread fachhoch
TinyMCE always uses an iframe - because it loads an editable document in it. I don't think that's your problem. Show us all of the relevant code (your java and html code). -- Jeremy Thomerson http://www.wickettraining.com On Mon, Apr 20, 2009 at 9:50 AM, tubin gen fachh...@gmail.com

tinymce question: how to switch default language?

2009-03-07 Thread rolandpeng
There are many languages supported by tinymce. The default lanuage of my tinymce is zh. -- TinyMCESettings settings = new TinyMCESettings( TinyMCESettings.Theme.advanced); Language language = settings.getLanguage(); System.out.println(language.name()); == result: zh -- I can't find setLanguage

Re: tinymce question: how to switch default language?

2009-03-07 Thread Pointbreak
2009 07:22 -0800, rolandpeng rolandp...@cht.com.tw wrote: There are many languages supported by tinymce. The default lanuage of my tinymce is zh. -- TinyMCESettings settings = new TinyMCESettings( TinyMCESettings.Theme.advanced); Language language = settings.getLanguage

Re: tinymce question: how to switch default language?

2009-03-07 Thread rolandpeng
what you want (because it is influenced by the browser preferences, and the same as what wicket is using). You can override it by passing a language as second argument in the TinyMCESettings constructor. -- View this message in context: http://www.nabble.com/tinymce-question%3A-how-to-switch

Re: Building and using TinyMCE in Wicket

2009-02-10 Thread Swanthe Lindgren
Try doing a mvn install on the tynimce subfolder. //Swanthe ashtek wrote: Hey all, I am trying to use TinyMCE, and I downloaded all the source from here - https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/tinymce-parent/ This creates a folder called

Error building TinyMce

2009-02-10 Thread ashtek
I am trying to build TinyMCE and I get the following error - Has anyone seen this error before? D:\mystuff\ibtools\apache-wicket-1.3.5\tinymce-parent\tinymcemvn install [INFO] Scanning for projects... [INFO] [ERROR] FATAL

Re: Error building TinyMce

2009-02-10 Thread Łukasz Lipka
Hi Ashtek, I think just try first D:\mystuff\ibtools\apache-wicket-1.3.5\tinymce-parent\ mvn install and than D:\mystuff\ibtools\apache-wicket-1.3.5\tinymce-parent\tinymcemvn install I hope this help. Best regards, -- Pozdrowienia Łukasz Lipka http://lukaszlipka.blogspot.com/ 2009/2/10 ashtek

Re: Error building TinyMce

2009-02-10 Thread ashtek
Thanks Lukasz. I tried what you suggest and I still got the same error. D:\mystuff\ibtools\apache-wicket-1.3.5\tinymce-parentmvn install [INFO] Scanning for projects... [INFO] [ERROR] FATAL ERROR [INFO

Re: Error building TinyMce

2009-02-10 Thread Łukasz Lipka
://lukaszlipka.blogspot.com/ 2009/2/10 ashtek ashok_tek...@yahoo.com: Thanks Lukasz. I tried what you suggest and I still got the same error. D:\mystuff\ibtools\apache-wicket-1.3.5\tinymce-parentmvn install [INFO] Scanning for projects... [INFO

Re: Error building TinyMce

2009-02-10 Thread ashtek
on Wicketstuff wiki does not seem to work. -- View this message in context: http://www.nabble.com/Error-building-TinyMce-tp21941674p21945694.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: Error building TinyMce

2009-02-10 Thread ashtek
on Wicketstuff wiki does not seem to work. -- View this message in context: http://www.nabble.com/Error-building-TinyMce-tp21941674p21945755.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Building and using TinyMCE in Wicket

2009-02-09 Thread ashtek
Hey all, I am trying to use TinyMCE, and I downloaded all the source from here - https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/tinymce-parent/ This creates a folder called tinymce-parent which in turn has two subfolders tinymce and tinymce-examples

Re: tinymce settings

2009-01-27 Thread Swanthe Lindgren
Ok, so things like mceSettings.addCustomSetting(skin : \o2k7\) work, but the readonly setting is in a newer version (3.1.1) when wicket tinymce is only 3.1.0. //Swanthe Hello to you all Im trying to use the tinymce behavior to get a nice editor. On one page I want a read-only tinymce

tinymce settings

2009-01-26 Thread Swanthe Lindgren
Hello to you all Im trying to use the tinymce behavior to get a nice editor. On one page I want a read-only tinymce, but how do I configure its settings? Is this anywhere near? TinyMCESettings mceSettings = new TinyMCESettings(Theme.simple); mceSettings.addCustomSetting(readonly:true

RE: TinyMCE ajax load

2008-12-17 Thread Sverre Boschman
Maybe my response to Martijn Lindhout's question regarding 'TinyMCE in an Ajax loaded panel' can be of any use. Sverre -Oorspronkelijk bericht- Van: Pointbreak [mailto:pointbreak+wicketst...@ml1.net] Verzonden: woensdag 17 december 2008 17:55 Aan: Wicket Users Mailing List Onderwerp

Re: TinyMCE ajax load

2008-12-17 Thread Pointbreak
If by load with ajax you mean that the javascript sources are loaded on ajax requests, instead of with the initial page, then no, that is not supported. The ajax parameter that was available in old 1.3 snapshots did not work properly. It has been removed for some time now (also in latest

TinyMCE ajax load

2008-12-17 Thread Omid Alamdar Milani
Hi, Is there a way to load tiny mce editor with ajax? 1.3 snapshot has an ajax parameter and works correctly on firefox but doesn't work on IE. The latest 1.4 snapshot works fine with IE but the ajax parameter is gone and I couldn't find a way to load it with ajax.

Re: TinyMCE ajax load

2008-12-17 Thread Omid Alamdar Milani
I'm trying to have an ajax tabbed panel where editor is in one of the tabs. When page is first showed, the editor tab is active and everything works fine, but when user changes tab and again returns to editor tab it doesn't load and plain text area is showed. So it isn't a problem with loading

Re: TinyMCE init method rendering twice

2008-12-10 Thread jchappelle
? Thanks, Josh pointbreak+wicketstuff wrote: You seem to be using an old version of tinymce. AFAIK, the latest version does not use mode: specific_textareas, but mode: exact in the tinyMCE.init call. Update to the latest version, and you should be fine I guess. You can remove

Re: TinyMCE init method rendering twice

2008-12-09 Thread jchappelle
, Josh pointbreak+wicketstuff wrote: You seem to be using an old version of tinymce. AFAIK, the latest version does not use mode: specific_textareas, but mode: exact in the tinyMCE.init call. Update to the latest version, and you should be fine I guess. You can remove the statusbar via

Re: TinyMCE init method rendering twice

2008-12-09 Thread Pointbreak
of tinymce. AFAIK, the latest version does not use mode: specific_textareas, but mode: exact in the tinyMCE.init call. Update to the latest version, and you should be fine I guess. You can remove the statusbar via TinyMceSettings.setStatusbarLocation(null) (which by the way is the default

TinyMCE init method rendering twice

2008-12-08 Thread jchappelle
I have a TinyMCE component in one of my pages and I am trying to remove the Path: toolbar at the bottom. I have noticed that the init method renders on my page twice. I only have one textarea on my page and I am adding a custom TinyMceBehavior to it. I am trying to disable the visualaid button(i

Re: TinyMCE init method rendering twice

2008-12-08 Thread Pointbreak
You seem to be using an old version of tinymce. AFAIK, the latest version does not use mode: specific_textareas, but mode: exact in the tinyMCE.init call. Update to the latest version, and you should be fine I guess. You can remove the statusbar via TinyMceSettings.setStatusbarLocation(null

TinyMCE in an Ajax loaded panel

2008-11-27 Thread Martijn Lindhout
Hi all, I searched nabble, but couldn't find any recent posts that brought me a solution to this problem: I have a page with two panels, a master/detail setup. The master has a list of items, the detail a TinyMCE editor. The details panel is invisible until the user clicks an item in the master

TinyMCE settings problems

2008-11-25 Thread kengimel
i am trying to integrate TinyMCE an wicket my code is as follows: for HTML : textarea wicket:id=richTextInput rows=10 cols=60 rich text /textarea For Java Class: TextArea textArea = new TextArea(richTextInput, new Model()); textArea.add(new TinyMceBehavior()); add

Controlling tinyMCE component

2008-10-27 Thread ash
The tinyMCE component has two themes - simple and advanced. When in simple - there is only one toolbar, when in advanced - three. 1. How can I remove toolbars? I could not find such an API. 2. How do I remove separators so that I can rearrange freely the buttons? Kind regards: al_shopov

RE: Controlling tinyMCE component

2008-10-27 Thread Sverre Boschman
The Wicket TinyMCE API (referring to the latest 1.3 snapshot release) is indeed not as feature rich as one could have wanted. But in the end the Wicket TinyMCE API just generates the javascript code to initialize TinyMCE (see the TinyMCE website). So, for example, to disable the second toolbar

RE: Controlling tinyMCE component

2008-10-27 Thread Александър Шопов
So, for example, to disable the second toolbar row you can overwrite the toJavaScript method of the TinyMCESettings object and do something like Thanx, Seems just the right approach. The toJavaScript way will allow me to do even further customizations. Kind regards: al_shopov

Re: tinymce ajax submit

2008-10-16 Thread jchappelle
Has that code been posted for wicketstuff-1.3? I am using the old wicket-contrib-tinymce-1.3-SNAPSHOT.jar. Where would I find an updated snapshot? Thanks, Josh sander v F wrote: For a project I also needed a AjaxSubmitLink to submit the tinyMce data, so i've searched for a solution

wicket-contrib-tinymce problem

2008-08-29 Thread btakacs
tinyMCE center test texarea2 textarea wicket:id=ta id=ta name=ta rows=30 columns=20test texarea/textarea /center /wicket:extend /body /html java: public ContentEditor() { setModel(new CompoundPropertyModel

Re: wicket-contrib-tinymce problem

2008-08-29 Thread Korbinian Bachl - privat
body wicket:extend tinyMCE center test texarea2 textarea wicket:id=ta id=ta name=ta rows=30 columns=20test texarea/textarea /center /wicket:extend /body /html java: public ContentEditor() { setModel(new

Re: Links Issue with TinyMce

2008-08-26 Thread pointbreak+wicketstuff
), rajdhan [EMAIL PROTECTED] said: I got the latest TinyMce-SNAPSHOT.jar, but couldn't compile my project as the distributed jar was compiled with JDK 1.5 and we are having to use 1.4 (other project dependencies). So, Checked-out the latest from SVN to try compiling with 1.4 and sure

Links Issue with TinyMce

2008-08-25 Thread rajdhan
Hi All, We are using TinyMce to post Rich Text onto a website with the possibility of providing hyper links. We are having issues posting links into the Text Area, example issue below: When I paste something like http://localhost:8080/doc?id=093102ce8004ffeell=f into the Text area, I see

Re: Links Issue with TinyMce

2008-08-25 Thread pointbreak+wicketstuff
FWIW, I cannot reproduce your problem in the latest tinymce snapshot. The latest snapshot has tinymce updated to version 3.1.0.1, so that might solve your problem. Otherwise you may have more luck posting your problem in the tinymce forums, as the plugin really doesn't do anything special

Re: Links Issue with TinyMce

2008-08-25 Thread rajdhan
I got the latest TinyMce-SNAPSHOT.jar, but couldn't compile my project as the distributed jar was compiled with JDK 1.5 and we are having to use 1.4 (other project dependencies). So, Checked-out the latest from SVN to try compiling with 1.4 and sure enough, there were 1.5 dependencies

Re: Customize TinyMCE init settings

2008-08-13 Thread Kaspar Fischer
-Original Message- From: Zach Cox [mailto:[EMAIL PROTECTED] Sent: April 20, 2008 3:19 PM To: users@wicket.apache.org Subject: Customize TinyMCE init settings I'm using the wicket-contrib-tinymce package and need to configure some of the settings that go into the init JavaScript: tinyMCE.init

Re: tinymce ajax submit

2008-08-11 Thread sander v F
For a project I also needed a AjaxSubmitLink to submit the tinyMce data, so i've searched for a solution and found it at http://dwairi.blogspot.com/2006/12/tinymce-ajax.html The solution is to add tinyMCE.triggerSave(true,true); to the onclick of the ajax button/link before the wicket code

Re: TinyMCE Behavior rather than TinyMCE Panel

2008-05-07 Thread Timm Helbig
Hi, AFAIK the only Release for Wicket 1.3 is available through the Wicketstuff Subversion Repository. The last Release I tried from sourceforge.net was outdated, because it was targeted for Wicket 1.2 The Module needed is wicket-contrib-tinymce and I suggest wicket-contrib-tinymce-examples

Re: TinyMCE Behavior rather than TinyMCE Panel

2008-05-07 Thread Ayodeji Aladejebi
it was targeted for Wicket 1.2 The Module needed is wicket-contrib-tinymce and I suggest wicket-contrib-tinymce-examples. And you have to build them on your own. Hope this helps. Regards, Timm Am Dienstag, 6. Mai 2008 23:40:21 schrieb Ayodeji Aladejebi: Hi, I sometimes saw a TinyMCE

TinyMCE Behavior rather than TinyMCE Panel

2008-05-06 Thread Ayodeji Aladejebi
Hi, I sometimes saw a TinyMCE code that uses AbstractBehavior to integrate TinyMCE rather than TinyMCEPanel from the one available in wicket stuffs. Please does anyone know where I can find this build thanks

Customize TinyMCE init settings

2008-04-20 Thread Zach Cox
I'm using the wicket-contrib-tinymce package and need to configure some of the settings that go into the init JavaScript: tinyMCE.init({ //settings from TinyMCESettings.toJavaScript are put here }); Specifically I need to set the content_css setting to get the same styles in the editor

Updating the wicket stuff wicket-contrib-tinymce with the latest version of tinyMCE

2008-04-16 Thread wicket user
Hi, Can we please update the wicket-contrib-tinymce project to use the latest version of tinyMCE. I would like to use the HTML Source Editor Syntax Highlighting Word Wrap using CodeMirror mentioned in this thread http://tinymce.moxiecode.com/punbb/viewtopic.php?pid=31049#p31049 I grabbed

Re: Updating the wicket stuff wicket-contrib-tinymce with the latest version of tinyMCE

2008-04-16 Thread wicket user
i am more than willing to do it if i have the permission to do it. regards -dipu 2008/4/16 Uwe Schäfer [EMAIL PROTECTED]: wicket user schrieb: Can we please update the wicket-contrib-tinymce project to use the latest version of tinyMCE. +1 I grabbed the wicket-contrib-tinymce

Re: Updating the wicket stuff wicket-contrib-tinymce with the latest version of tinyMCE

2008-04-16 Thread Uwe Schäfer
wicket user schrieb: Can we please update the wicket-contrib-tinymce project to use the latest version of tinyMCE. +1 I grabbed the wicket-contrib-tinymce from the svn and updated the tinyMCE files and made the changes as mentioned in the thread and it worked for me like a charm i´m

where is wicket-contrib-tinymce ???

2008-02-20 Thread Maris Orbidans
where is wicket-contrib-tinymce project and svn repo ? it's not even mentioned in this page http://wicketstuff.org/confluence/display/STUFFWIKI/Wiki Maris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: where is wicket-contrib-tinymce ???

2008-02-20 Thread Java Programmer
On Feb 20, 2008 10:42 PM, Maris Orbidans [EMAIL PROTECTED] wrote: where is wicket-contrib-tinymce project and svn repo ? it's not even mentioned in this page http://wicketstuff.org/confluence/display/STUFFWIKI/Wiki https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket

Re: where is wicket-contrib-tinymce ???

2008-02-20 Thread Nino Saturnino Martinez Vazquez Wael
its also in maven repo: http://wicketstuff.org/maven/repository/org/wicketstuff/wicket-contrib-tinymce/ Java Programmer wrote: On Feb 20, 2008 10:42 PM, Maris Orbidans [EMAIL PROTECTED] wrote: where is wicket-contrib-tinymce project and svn repo ? it's not even mentioned in this page

Could TinyMCE Upload pictures or files

2008-01-28 Thread Mead
Hello All, Could TinyMCE upload pictures or files? I run the example of TinyMCE(from wicket stuff), and find the demo there could not upload any files or images, but only insert the URL of picture Best regards, Mead [EMAIL PROTECTED] 2008-01-28

Re: Could TinyMCE Upload pictures or files

2008-01-28 Thread Nino Saturnino Martinez Vazquez Wael
Add a upload field to the page.. And reference that from tinymce? Mead wrote: Hello All, Could TinyMCE upload pictures or files? I run the example of TinyMCE(from wicket stuff), and find the demo there could not upload any files or images, but only insert the URL of picture Best

Re: [wicket-contrib-tinymce] Compile error from svn-project

2007-12-08 Thread Frank Bille
the previous version instead. So what you could do yourself instead, is to change log4j version in the pom file. Regards, Frank [1]: http://markmail.org/message/x6vhmw7z5wa3c3cg On Dec 8, 2007 11:08 AM, Per Newgro [EMAIL PROTECTED] wrote: Hi *, i try to use the wicket-contrib-tinymce project from svn

RE: [wicket-contrib-tinymce] Compile error from svn-project

2007-12-08 Thread William Hoover
Damn licenses :o) -Original Message- From: Martijn Dashorst [mailto:[EMAIL PROTECTED] Sent: Saturday, December 08, 2007 9:21 AM To: users@wicket.apache.org Subject: Re: [wicket-contrib-tinymce] Compile error from svn-project Not going to happen. Logback is LGPL licensed. Martijn On Dec

Re: [wicket-contrib-tinymce] Compile error from svn-project

2007-12-08 Thread Martijn Dashorst
08, 2007 6:10 AM To: users@wicket.apache.org Subject: Re: [wicket-contrib-tinymce] Compile error from svn-project You can follow what maven tells you :-) The problem is that the log4j version has been upgraded from 1.2.14 to 1.2.15 which has some new dependencies which are not in standard

Re: [wicket-contrib] TinyMCE Hackery

2007-12-06 Thread Frank Bille
I have just added TinyMCE to bamboo[1], but it won't build because of some log4j dependency problems[2]. Do you have to use log4j 1.2.15 instead of 1.2.14? Frank [1]: http://wicketstuff.org/bamboo/browse/WSTINYMCE-TRUNK [2]: http://wicketstuff.org/bamboo/browse/WSTINYMCE-TRUNK-1 On Nov 29

Re: [wicket-contrib] TinyMCE Hackery

2007-11-28 Thread Frank Bille
Some comments to your push: - You should use wicket-1.3.0-SNAPSHOT instead of wicket-1.3.0-rc1. It's only when you make releases of tinymce, that you fix yourself on specific versions - Why have you updated servlet version to 2.4? Frank On Nov 28, 2007 8:21 AM, Michael Laccetti [EMAIL

RE: [wicket-contrib] TinyMCE Hackery

2007-11-28 Thread Michael Laccetti
: November 28, 2007 3:10 AM To: users@wicket.apache.org Subject: Re: [wicket-contrib] TinyMCE Hackery Some comments to your push: - You should use wicket-1.3.0-SNAPSHOT instead of wicket-1.3.0-rc1. It's only when you make releases of tinymce, that you fix yourself on specific versions - Why have you

Re: [wicket-contrib] TinyMCE Hackery

2007-11-28 Thread Frank Bille
On Nov 28, 2007 4:26 PM, Michael Laccetti [EMAIL PROTECTED] wrote: Okay, I will switch from -rc1 to SNAPSHOT. Regarding servlet 2.4, I mistakenly thought that it was the version that Wicket was using. Apparently not; I will switch back to 2.3. Thanks :-) Frank

Re: [wicket-contrib] TinyMCE Hackery

2007-11-28 Thread Michael Laccetti
/-wicket-contrib--TinyMCE-Hackery-tf4886399.html#a13995712 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [wicket-contrib] TinyMCE Hackery

2007-11-28 Thread Frank Bille
On Nov 28, 2007 5:24 PM, Michael Laccetti [EMAIL PROTECTED] wrote: Okay, I have made the modifications, committed, and pushed a new snapshot to the Maven repo. When bamboo comes up again I can ensure that the tinymce project is configured. Then it should post snapshots to the wicketstuff

RE: [wicket-contrib] TinyMCE Hackery

2007-11-28 Thread Michael Laccetti
:[EMAIL PROTECTED] On Behalf Of Frank Bille Sent: November 28, 2007 3:57 PM To: users@wicket.apache.org Subject: Re: [wicket-contrib] TinyMCE Hackery On Nov 28, 2007 5:24 PM, Michael Laccetti [EMAIL PROTECTED] wrote: Okay, I have made the modifications, committed, and pushed a new snapshot

[wicket-contrib] TinyMCE Hackery

2007-11-27 Thread Michael Laccetti
I've done some work on the TinyMCE project to get it to compile, since it currently does not do so straight out of subversion. Two questions: is it okay for me to commit the changes, and would it be possible to push this to the wicketstuff Maven repo? (If it is not, I have a publically

Re: [wicket-contrib] TinyMCE Hackery

2007-11-27 Thread Igor Vaynberg
i dont think committing changes, as long as they are basic fixes, right away should be a problem, that is why it is in a public repo... -igor On Nov 27, 2007 9:09 PM, Michael Laccetti [EMAIL PROTECTED] wrote: I've done some work on the TinyMCE project to get it to compile, since it currently

RE: [wicket-contrib] TinyMCE Hackery

2007-11-27 Thread Michael Laccetti
- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: November 28, 2007 1:04 AM To: users@wicket.apache.org Subject: Re: [wicket-contrib] TinyMCE Hackery i dont think committing changes, as long as they are basic fixes, right away should be a problem, that is why it is in a public repo... -igor

Re: tinymce ajax submit

2007-11-19 Thread godin
Frank Bille a écrit : Hi, Do you have problems with it? yes , the submit work half a time i will investigate it more I tried it over a year ago, and as far as I remember there was nothing to it. That was Wicket 1.2.3 and tinymce from back then. Frank On Nov 16, 2007 5:24 PM, godin

Re: tinymce ajax submit

2007-11-19 Thread godin
marc Wicket rocks ! I tried it over a year ago, and as far as I remember there was nothing to it. That was Wicket 1.2.3 and tinymce from back then. Frank On Nov 16, 2007 5:24 PM, godin [EMAIL PROTECTED] wrote: Hi, doe somebody manage to make tinymce work with an ajax submit button regards

tinymce ajax submit

2007-11-16 Thread godin
Hi, doe somebody manage to make tinymce work with an ajax submit button regards Marc - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tinymce ajax submit

2007-11-16 Thread Frank Bille
Hi, Do you have problems with it? I tried it over a year ago, and as far as I remember there was nothing to it. That was Wicket 1.2.3 and tinymce from back then. Frank On Nov 16, 2007 5:24 PM, godin [EMAIL PROTECTED] wrote: Hi, doe somebody manage to make tinymce work with an ajax submit

how to integrate tinymce/yahoo texte editor with modal dialog

2007-11-15 Thread godin
Hi, i've tried to integrate tinymce or yahoo text editor in a form inside a modal, but i fail anybody ever do this before ? regards marc - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

wicket-contrib-tinymce problem with multiple editors

2007-10-08 Thread Maurice Marrink
Hi, I would like to use wicket-contrib-tinymce in our project but am having a bit of a problem. I am using the 1.0 version from sourceforge in our wicket 1.2.x project. The problem is that in the html the id of the textarea is set to the markupid from the component, where TinyMCESettings expects

Re: wicket-contrib-tinymce problem with multiple editors

2007-10-08 Thread Iulian Costan
Maurice, the issue was fixed in 1.3 only, i'll take a look and fix it in 1.2 branch as well. /iulian On 10/8/07, Maurice Marrink [EMAIL PROTECTED] wrote: Hi, I would like to use wicket-contrib-tinymce in our project but am having a bit of a problem. I am using the 1.0 version from

Re: wicket-contrib-tinymce problem with multiple editors

2007-10-08 Thread Maurice Marrink
} repeat several times The topmost panel is used to switch the inner most panel between read and right mode (in write mode we use tinymce). Granting the user the possibility to edit each property / panel individually. each form is submitted through an ajaxsubmitlink. Maurice On 10/8/07, Iulian

TinyMCE : multiple textarea's with TinyMCEBehaviour

2007-09-19 Thread Marieke Vandamme
Hello, I have 2 textfields who each have the TinyMCEBehaviour, but the first one is simple and the other advanced (so they each have a different TinyMCESettings in constructor). This results in getting 4 tinyMCE editing boxes on my page, and the problem is because the same 'editor_selector

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
Hello, I had the same problem with tinymce in internet explorer. I was glad to read this thread and downloaded the latest sources from CVS. But now I get a firefox error saying : tinyMCE.baseURL has no properties (tiny_mce_src.js:88). Am i the only one getting this error or is it a common error

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Benjamin Ernst
Hi i don't get this error in firefox. And I configured TinyMCE just like in the examples. Benjamin 2007/9/14, Marieke Vandamme [EMAIL PROTECTED]: Hello, I had the same problem with tinymce in internet explorer. I was glad to read this thread and downloaded the latest sources from CVS

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Iulian Costan
my guess is that you load tinymce using ajax, where tinymce area is placed in a panel that is loaded dynamically. if the above is true then there (TinymceBehaviour constructor) is a boolean parameter called 'ajax' that you have to set to true. /iulian On 9/14/07, Marieke Vandamme [EMAIL

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
Well ... it didn't. And the strangest thing is that when working with the previous CVS sources from tinymce, it does.. Can it have something to do with those changes for internet explorer or ajax? I can go back to the previous release, but then internet explorer doesn't work... Marieke Vandamme

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Iulian Costan
there are two ways to use tinymce: 1) TinyMCEPanel - does add static tinymce capabilities to the page/textarea 2) TinyMCEBehaviour - it is a try to make tinymce/ajax load/work together, but it seems that tinymce library is not ajax ready (if you look at how they lazy-load JS files in background

TinyMCE Editor with AJAX

2007-09-12 Thread ximego
) { . } } ); But when I use TinyMCE instead of textarea, the above code doesn't workAny hint? Thanks in advance. -- View this message in context: http://www.nabble.com/TinyMCE-Editor-with-AJAX-tf4430222.html#a12638380 Sent from the Wicket - User mailing list archive

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-10 Thread Iulian Costan
hey, sorry for this late response, i've just read this thread. the reason behind all those tricky imports is the tinymce/ajax compatibility. tinymce works very well when it is loaded at the same time with parent page but when you try to load it using ajax then there is a problem. anyway tinymce

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-10 Thread Iulian Costan
script tag // then we // need this workaround to safely import tinymce script // import script // IS NOT NEEDED ANY LONGER //StringBuilder importBuilder = new StringBuilder(); //importBuilder.append(var script = document.createElement ('script

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-08-21 Thread Benjamin Ernst
But no response so far. I can't help you any further but lets hoop the maintainer of the tinymce project picks it up... Thijs Benjamin Ernst wrote: Hi, has nobody an idea? Any help would be great! Thanks, Benjamin 2007/8/16, Benjamin Ernst [EMAIL PROTECTED]: Hi, I have

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-08-21 Thread Iulian Costan
hey guys, i am supposed to be the maintainer of tinymce module but lately i didnt put much effort into it. let me take a look and see how i can fix that issue. /iulian On 8/21/07, Benjamin Ernst [EMAIL PROTECTED] wrote: Hi Thijs, Thank you for opening the JIRA. At least there is someone who

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-08-20 Thread Benjamin Ernst
Hi, has nobody an idea? Any help would be great! Thanks, Benjamin 2007/8/16, Benjamin Ernst [EMAIL PROTECTED]: Hi, I have a problem with the wicket-stuff Tinymce-Editor in the InternetExplorer: the first time the page is loaded, there are no tool-icons, just the text-area. And IE gives

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-08-20 Thread Thijs
He Benjamin, I have the same problem. I have opened a JIRA issue for it: http://wicketstuff.org/jira/browse/WCTINYMCE-2 But no response so far. I can't help you any further but lets hoop the maintainer of the tinymce project picks it up... Thijs Benjamin Ernst wrote: Hi, has nobody

<    1   2   3   4   >