Hi,
I use the FCKeditor with VS2005 in ASP.Net. When I copy my text from Word (2 pages), in IE, FCKeditor display correctly my text but in FireFox the text is truncate. For Firefox, I tried with the demo on the Web and I have the same problem.
Also, in two cases, if I save text to my SQLServer Database, the text is truncate too. However, if affect my DB value to the FCKeditor, the text is not truncated.
Any ideas?
Thanks,
Sylvain
I use the FCKeditor with VS2005 in ASP.Net. When I copy my text from Word (2 pages), in IE, FCKeditor display correctly my text but in FireFox the text is truncate. For Firefox, I tried with the demo on the Web and I have the same problem.
Also, in two cases, if I save text to my SQLServer Database, the text is truncate too. However, if affect my DB value to the FCKeditor, the text is not truncated.
Any ideas?
Thanks,
Sylvain
Re: Copy & Paste from Word
Hi,
I found my problem. My project use ActiveRecord of Castle and my string property in my class truncate the FCKeditor value. To resolve the problem just add a property attribute ColumnType="StringClob".
See this link: http://www.castleproject.org/activerecord/faq.html
Sylvain