Hi guys and girls,
Having a hard time with the styles, cannot turn off the bolding at all. In IE7 you may select a text, bold it, and thats it, the toolbar button gets stuck and you may never able to unbold the text afterward. Same effect applies to Italics and Underline as well. You may not undo it to the highlighted text.
Any ideas, configuration file settings? Anyone encountered this bug?? I am stuck and cannot release the updated version of FCKeditor to our clients due to this error.
My version is:
---------------------------------------
FCK Editor: 2.6.4.
InternetExplorer: 7.0.6001.18000
OS: Vista
---------------------------------------
Thank you in advance.
Harry
Having a hard time with the styles, cannot turn off the bolding at all. In IE7 you may select a text, bold it, and thats it, the toolbar button gets stuck and you may never able to unbold the text afterward. Same effect applies to Italics and Underline as well. You may not undo it to the highlighted text.
Any ideas, configuration file settings? Anyone encountered this bug?? I am stuck and cannot release the updated version of FCKeditor to our clients due to this error.
My version is:
---------------------------------------
FCK Editor: 2.6.4.
InternetExplorer: 7.0.6001.18000
OS: Vista
---------------------------------------
Thank you in advance.
Harry

Re: Bolding - Italics - Underline cannot be turned off in IE
It must be something special in you system.
Re: Bolding - Italics - Underline cannot be turned off in IE
http://dev.fckeditor.net/ticket/2834
http://dev.fckeditor.net/ticket/2156
http://www.SoftwareTesting.net
Re: Bolding - Italics - Underline cannot be turned off in IE
http://dev.fckeditor.net/attachment/tic ... 56_3.patch
http://www.fckeditor.net/fckpackager
Re: Bolding - Italics - Underline cannot be turned off in IE
since I need to use FCKEditor on this project I came up with a work around:
if (typeof(FCKeditorAPI)!=='undefined') { var $tabs = $('#tabs').tabs(); var selected = $tabs.tabs('option', 'selected'); // => 0 if (selected == 0) { var oEditor = FCKeditorAPI.GetInstance('home_page_message') ; if (typeof(oEditor.EditorDocument)!=='undefined') { //var xhtml = oEditor.GetHTML( true ); //This messes up with the BIU formatting, so we use jQuery var htmlJQuery = $(oEditor.EditorDocument.body).html(); $("#previewHomePageMessageBoard").html( htmlJQuery ); } } }I have UI Tabs on my page and my client needed a "live preview" feature to make sure the edited text would fit on the public interface of the site.
Hope that save's somebody's hair and helps FCK development team fix the problem