Custom Query
Results (201 - 300 of 1835)
Ticket | Summary | Keywords | Owner | Type | Status | Priority |
---|---|---|---|---|---|---|
#209 | Netscape 7.1: URL portions in links are replaced with $5 | Netscape Confirmed | Bug | closed | Normal | |
Description |
The HTML has been corrupted: <a href="http://www.fckeditor.net/$5">FCKeditor</a> If you switch back to normal mode, and back again, it will keep adding $5$5. Sometimes, it will add $4 to the beginning of the URL and similar bugs. |
|||||
#211 | Firefox: Unclosed <p> tag results in cursor not showing up and can't focus into editor | Confirmed Firefox | Bug | closed | Normal | |
Description |
<p>
The cursor disappears. You can't focus into editor. Do I win a prize for "shortest markup that causes a bug"? :) |
|||||
#213 | Enter key does not preserve formatting between paragraphs | Confirmed SD-COE | Bug | closed | Normal | |
Description |
Upon the second paragraph the size selection gets lost. Below is the source this was created from above: <p><font size="3">This is a test</font></p> <p>to see if this works<font size="3"></font></p> One note is that upon entering the second paragraph, the Size combo goes blank and the Format combo becomes Normal. IMHO if the user manually selects a size it should have persistance until changed again. |
|||||
#217 | Can't change the formating of text copied from other websites | Confirmed | Bug | closed | Normal | |
Description |
With any browser...
Note: The bug happens with other types of formatting as well.
This happens because GMail uses the This is an important issue because it is very common for people to cut & paste richtext from a webpage into the editor. Ideally, we'd convert and sanitize all paste operations. |
|||||
#218 | Word-formatted text fails to paste with Firefox for Mac | Confirmed Firefox Mac CantFix | Bug | closed | Normal | |
Description |
Have tried to copy & paste from Word into FCKeditor numerous times using the toolbar button for "paste from Word" (and resulting popup window). All bold, italicized, and underlined text loses any/all of those attributes under Firefox 2.0.0.2 (current) for OS X. Problem does not occur with same browser version for Windows. Steps to reproduce: Create a file in Word 2004 for Mac (v11.3, current) with text that has underlining, bold, and/or italicized text (or combinations thereof). Copy text, move to Firefox and try to paste with Word toolbar button in FCKeditor. A Demo file is attached. In addition, all paragraph indents are lost as well. Working with Firefox 2.0.0.2 for OS X on a MacBook Pro with OS X 10.4.8 installed, and Word 2004 for Mac v11.3. |
|||||
#219 | IE: Can't paste | Confirmed IE | Bug | closed | Normal | |
Description |
With MSIE...
(Is the above URL the nightly build from the new hosted-projects.com SVN, or the old sourceforge SVN?) |
|||||
#220 | Link/Anchor multiple paragraphs create buggy links | Confirmed | Bug | closed | Normal | |
Description |
Original html: <p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> <p>Testing</p> <p>One Two Three</p> Select all content and add an anchor or link, then the html is changed to: <p><a name="anchor1">This is some <strong>sample text</strong>. You are using FCKeditor.</a></p> <p><a href="javascript:void(0);/*1173334815335*/">Testing</a></p> <p><a href="javascript:void(0);/*1173334815335*/">One Two Three</a></p> |
|||||
#222 | extraneous tags are left when selecting styles | Confirmed | Bug | closed | Normal | |
Description |
When applying a predefined style from the dropdown box it leaves behind or adds tags that make the code invalid. Say I have <h1>This is a heading</h1> and I want to change it to heading style_2. I highlight 'This is a heading' and select 'heading style_2' from the dropdown box. I expect to get <h1 style="style_2">This is a heading</h1>. What I actually get is <h1><h1 style="style_2">This is a heading</h1></h1> The same seems to happen with other tags so if I start with <p>This is a heading</p> I get <p><h1 style="style_2">This is a heading</h1></p> which obviously isn't valid. If I go to source view and back again it will sometimes change to: <h1></h1> <h1 style="style_2">This is a heading</h1> which isn't quite as bad but still not ideal. I've already taken out font sizing and font face from the user as this used depreciated tags and left an invalid mess of code behind. It'd be great to have a time when all code from the editor is always going to remain 100% valid. Thanks for supporting this mostly great project. |
|||||
#231 | Using <p><center></p> causes extra spacing in Firefox | Confirmed | Bug | closed | Normal | |
Description |
Let's say you have this code: <p>text text text text</p> <p><center>text text</center></p> <p>text text text text</p> Every time you save the code, it adds <p>&nsbp;</p> before and after the <p><center>text text</center></p> So if I save it 5 times, you end up with this: <p>text text text text</p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p><center>text text</center></p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p>text text text text</p> Removing the <center> tag fixes the problem. |
|||||
#234 | Microsoft Asp.net 2.0 AJAX UpdatePanel Bug | Confirmed Review+ | Bug | closed | Normal | |
Description |
Hi, I'm made a basic asp.net 2.0 Form with a FormView to edit a simple "text". -> My formview works with a FckEditor or a TextBox editor in it. If I surround the formview with an UpdatePanel, Then It doesn't works anymore. The Text Inside the FckEditor is not recorded into the database. Neither when using insert nor update method. If I replace the FckEditor by a TextBox, then it works well again. Does FckEditore don't support Microsoft Asp.net AJAX, or UpdatePanels, or I have to do something to the FckEditor to support it? Thanks for helping me... |
|||||
#239 | <xml> in html make IE truncate paragraphs (solution included) | Confirmed IE | Bug | closed | Normal | |
Description |
Example: IE6 or IE7, go to http://www.fckeditor.net/demo, Source, insert "<xml>toto</xml>" before "You", Source, Source. Result: Everything has disappeared after the newly-introduced "<xml>" (well, it was transformed to an "<!-- Element not supported - Type: 9 Name: #document-->"). Analysis: While generating the DOM for something like "<p><span>s</span><xml>x</xml><span>s</span></p>", IE creates a document node in which it incorrectly includes, not only "<xml>", but its nextsiblings too. Thus FCK receives it as "<p><span>s</span><!-- Element […] --></p>". Solution: Filter out those. On line 299 of internals/fck.js (revision 203), add "|XML" to sTags. Why, oh why: Because we had a Word-generated HTML that included some "<xml><o:OLEObject>[…]</o:OLEObject></xml>", sometimes embracing the OLE into IE-specific conditional comments. |
|||||
#240 | "Remove Format" doesn't remove styles | Confirmed IE SD-COE | Bug | closed | Normal | |
Description |
I found an ennoying bug with IE6 using css to format the text To reproduce it, go to the official demo page http://www.fckeditor.net/demo select "This is some sample text" and apply the 'title' style, click elsewhere. Come back to this text, try to 'remove format' or change the style to anything else: none of the below are working. when you change the style it keeps adding <span > tags around the selected text. Indeed it's workign perfectly with Firefox, it seems to be a IE bug only. (Unfortunately most of my clients are Microsoft addict..) |
|||||
#243 | Form Empties Contents (due to nested <p>'s) | Confirmed HasPatch | Bug | closed | Normal | |
Description |
Here's an issue that appeared to be fixed in 2.4 after Frederico noticed it, but it is back to needing repair in 2.4.1. I was JUST getting ready to put out the new version... :)
I believe it has to do with the form being creatd inside <p> tags and then the form element being placed inside nested <p> tags once ENTER is pressed after it. So when the <p> nesting is being repaired (to make valid) by the editor, it takes the contents with it...not good. I tried to look up the 2.4 testing forum to find my original post and Frederico's fix post, but I couldn't find the thread (removed?). Anyway, please, please, repair that again, Frederico. Thank you, Tom |
|||||
#246 | EnterMode=div can lose tags in Firefox | Confirmed Firefox | Bug | closed | Normal | |
Description |
Browser: Firefox 2.0.0.2 The following causes <div> tags to be lost when EnterMode=div and text to be corrupted (eg whitespace is lost and lines are joined together)
It basically seems that some editor commands completely break the <div>'s. From some testing this appears related to alignment (left/right/center/justify) and changing to list items/back from list items. |
|||||
#247 | IE : Delete all breaks EnterMode=div | Confirmed IE | Bug | closed | Normal | |
Description |
Browser: IE 7.0.5730.11 EnterMode=div does not appear to have any effect on IE7, instead using EnterMode=p instead.
|
|||||
#248 | Terminator backspace | Confirmed | Bug | closed | Normal | |
Description |
Summary: Backspace conglomerates blocks, without being smart. Example: http://www.fckeditor.net/demo Source <div><br/><h1>Machin</h1></div> Source click before the « M » backspace Effect: « Machin » disappears Cause: fckenterkey.js, line 202 (revision 203): when hitting backspace, except in some rare cases, the current element is merged within the previous one. In the example "crasher", <div><br/><h1>Machin</h1></div> became <div><br>Machin</br></div> oops! Same with an image, and so on. Priority: if not for the line asking not to play on Priority on bug reports, I would have set this to High. |
|||||
#251 | Inconsistent Tab behavior | Confirmed | Bug | closed | Normal | |
Description |
The Tab key doesn't seem to behave as expected. In FF it moves the text 2 characters. In IE, the Tab key actually cycles between the web page elements and has no effect in the editor itself. With FF 2.0.0.2
With IE 7.0
Additionally with FF, the FCKConfig.TabSpaces setting seems to be ignored. I duplicated the above behavior with 2.4.0 on my site. The above behavior has FCKConfig.TabSpaces = 0;. Setting FCKConfig.TabSpaces = 8; makes no difference. You still get "<p> This..." |
|||||
#252 | Pasting invalid markup generate empty paragraphs with IE | Confirmed IE | Bug | closed | Normal | |
Description |
I have a customer experiencing problems pasting html code generated by FrontPage into the editor. Taking the following snippet: <span style="background-color: #FFFFFF"> <div align="center"> <p align="justify"><span style="FONT-WEIGHT: 400"><font size="1"><u><strong> <font face="Tahoma" color="#cc0000" size="2">Attention</font></strong></u><strong><font face="Tahoma" color="#cc0000" size="2">:</font></strong></font><font size="2" face="Tahoma"> </font> <font style="MARGIN: 0px" face="Tahoma" size="2"><span style="FONT-WEIGHT: 400; BACKGROUND-COLOR: #ffff00"> Avoid The </span><span style="FONT-WEIGHT: 700; BACKGROUND-COLOR: #ffff00">Costly-Mistakes</span><span style="FONT-WEIGHT: 400; BACKGROUND-COLOR: #ffff00"> That Beginning Real Estate Investors Make When Buying Minnesota Investment Property!</span></font><font face="Tahoma" size="2"> </font> </span></p> <p align="center"><font size="1"><font color="#CC0000"> <span style="font-weight: 400"><font face="Tahoma" size="4"><strong>"Free Investor's Guide Reveals Everything <u>You</u> <em>Need <br> To Know</em> About Investing In Minnesota Real Estate!" </strong></font></span></font><font style="FONT-SIZE: 1pt" face="Tahoma" color="#283193"><br> </font><span style="FONT-WEIGHT: 400; FONT-STYLE: italic"><font style="FONT-SIZE: 2pt" face="Tahoma"> </font></span></font></p> <p align="justify"><font face="Tahoma" size="2">"The Key To <b>Building Wealth</b> And<b> Preparing For Retirement</b> By Investing In Minnesota Real Estate - Depends On <b>Where</b> You Invest And <b>How</b> <b>Effectively</b> You Manage Your Properties..." </font><br> <font size="1"><span style="FONT-WEIGHT: 400"><strong style="font-weight: 400"> <font color="#000000" size="2" face="Tahoma"> <br> ~ Alex Anderson - Minnesota Investment Property Specialist</font></strong></span></font><font size="2" face="Tahoma"> </font></p>
With FF 2.0.02 Performing the above tests with FF works correctly. Source reveals: <p><span style="background-color: rgb(255, 255, 255);"> <div align="center"> with no bizarre behavior as with IE. One small issue though is the above code in FF has the wysiwyg text starting with one blank line at the beginning. With IE in step 2 above, the text was flush at the editor top. Good one, huh? :-) |
|||||
#253 | Styles don't become active when applied to collapsed selections | Confirmed | Bug | closed | Normal | |
Description |
Good news is that Font, Size, and Format work correctly now in both IE and FF. The Style selection is having problems. Firefox
IE With IE it still doesn't work, but it doesn't work differently. The only time you can get the Style applied is that actually highlight text then apply a style.
|
|||||
#254 | FF: IgnoreEmptyParagraphValue is not honored | Confirmed Firefox | Bug | closed | Normal | |
Description |
When running the editor under FF, it starts with <p> </p> in the code. The same problem occurs if deleting all text. FF
IE
One final note, with FF, if you delete all the text in source mode and then switch to wysiwyg mode and back to source mode, the source is empty. |
|||||
#257 | Editor truncates data | Confirmed IE | Bug | closed | Normal | |
Description |
I edited some HTML and submitted the form. When I went back to edit again, 95% of the data was gone. Fortunately I had it on the clipboard. I pasted it in, and this time clicked the Source button to see the rendered version -- and again it got truncated. I even saw the correct data briefly flash and then FCKEditor destroyed it again. So yes, this is repeatable. I am using the interface supplied by CityMax.com, and have no idea what version it is or how to find out. |
|||||
#261 | FCKeditor doesn't escape URLs for whitespaces | SF Confirmed | Bug | closed | Normal | |
Description |
FCKEditor doesn't escape the URL when you insert and image, resulting in a <img src="http://server/file with spaces.png" />. Many web clients don't escape the URL for us and, as consequence, get a 404 for the image (like evolution viewing an HTML mail, with images enabled). Little patch follows.
Moved from SF: |
|||||
#264 | IE: Memory leak | IE Confirmed | Bug | closed | Normal | |
Description |
Load the editor, with IE 6 on Windows XP. The memory usage of IE (indicated by windows task manager) continuously grows each page is refreshed, unless close the browser and restart it again. IE 6 will consume 600-800KB memory with each page refresh. This behavior can be reproduced |
|||||
#268 | & in Javascript being converted to ' | Confirmed | Bug | closed | Normal | |
Description |
If you enter a link such as the following in the source view: <a title="My Page" onClick="pop('/page?id=212&do=something', 372, 445); return false;" href="#">Test</a> and then goto the preview mode and back to the source, you will find that the editor has changed the link to the following: <a title="My Page" onClick="pop('/page?id=212'do=something', 372, 445); return false;" href="#">Test</a> |
|||||
#272 | Wrong Toolbar Height on multiple Instances in IE6 and IE7 | Confirmed IE | Bug | closed | Normal | |
Description |
If you use Multiple Editor Instances with one Toolbar the Toolbar is only one Row high. Even if there are more Elements. This only occurs in IE (tested on 6 and 7). Firefox is fine. It was working fine in Internet Explorer before FCK Version 2.4. You can easily reproduce it with the html-sample Files _samples/html/sample11.html and _samples/html/sample10.html |
|||||
#277 | Bulleted lists do not work as expected if alignment for the paragraph was changed. | Confirmed SD-COE | Bug | closed | Normal | |
Description |
The bullet lists work as expected under normal circumstances. For example, you click on a line of text, select ordered or unordered bullets to make that line the first bullet. After that you can simply press enter at the end of the line and another empty bullet will appear and allow you to type in the appropriate text. This functionality does not work if the alignment was changed for the paragraph before turning on the bullets. If alignment has changed, then the bullet receives <div align="xxxx">xx</div> as its content. As a result, when enter is pressed, new paragraphs get created inside this div, and no new bullets appear. |
|||||
#284 | Firefox: Additional <br /> tags removed from end of document | Confirmed Firefox | Bug | closed | Normal | |
Description |
If additional <br /> tags are placed at end of document, they are removed one at a time each time you swap to Source view and back.
To replicate:
In my case, I am inserting the html entered in the editor into another page dynamically and want to allow the <br /> tags to increase the distance between the html from the editor and the html in the rest of the page. |
|||||
#290 | Line breaks on tags may break links | Confirmed IE | Bug | closed | Normal | |
Description |
Loading the following: <a href= "My Test">My Test</a> Results on the following after editor processing: <a href="_fcksavedurl=">My Test</a> This is a IE only issue. |
|||||
#302 | Firefox automatic hyperlink creation | SF Confirmed CantFix | New Feature | closed | Normal | |
Description |
This is a continuation of bug 1314815 at http://sourceforge.net/tracker/index.php?func=detail&aid=1314815&group_id=75348&atid=543656 In Firefox, when a URL is entered (as visible text on the page), it is not automatically converted to an HTML hyperlink. Confirmed that this remains a problem using FCKeditor 2.4.1 and WinXP/Firefox 2.0.0.3. |
|||||
#303 | Stylesheet link styles not applied in Firefox | Confirmed SF CantFix | Bug | closed | Normal | |
Description |
This is a continuation of bug 1230485 at http://sourceforge.net/tracker/index.php?func=detail&aid=1314815&group_id=75348&atid=543656 In Firefox, styles for 'a' tags are not carried over into the editor window. When specifying a stylesheet using the EditorAreaCSS configuration setting, link styling is not inherited when using Firefox. (IE works fine.) For instance, if I have the same stylesheet set for both the page and the EditorAreaCSS as a {text-decoration: none;} the underlining is not applied to links in the main part of the page, but underlining IS still applied within the editor area. (PS a:hover {text-decoration: underline;} doesn't work on either Firefox/IE6, but then I wouldn't expect them to really.) Confirmed that this remains a problem using FCKeditor 2.4.1 and WinXP/Firefox 2.0.0.3. Problem is known about by Mozilla developers; see: https://bugzilla.mozilla.org/show_bug.cgi?id=300358 |
|||||
#316 | FF: Impossible to position the cursor between two centered tables | Confirmed Firefox CantFix | Bug | closed | Normal | |
Description |
please see the second issue highlighted in this video (the first was CSS related and is fixed): http://24-7-sales.com/wysiwyg/3-29.html D. |
|||||
#318 | Multiple linked images are getting merged in a single link | SF IE Confirmed | Bug | closed | Normal | |
Description |
If two or more images are placed side by side, with nothing in between, and seperate links placed on each image, all images are placed within a single anchor tag. Example: HTML desired: <a href="image1_url"><img src="image1_path" /></a> <a href="image2_url"><img src="image2_path" /></a> HTML generated: <a href="image2_url"><img src="image1_path" /><img src="image2_path" /></a>
Moved from SF: |
|||||
#327 | Backspace Activates Back Button | Confirmed IE | Bug | closed | Normal | |
Description |
On FCKeditor 2.4.1 on IE 6 when you press the insert image button, select an image, and press okay, the image appears on the editor window like it normally should. Now, while the image is still selected, hit the backspace key. The browser will be taken back to the previous page instead of deleting the image. The only way to delete an image is to use the "del" key. |
|||||
#328 | whitespace trimming within pre tags | Confirmed | Bug | closed | Normal | |
Description |
Leading whitespace within a pre tag is being trimmed. This is an issue because the text within the pre tag is expected to be preserved 'as is'.
This issue exists on Firefox 2.0.0.3 and IE 7.0.5730.11 (both on WinXP). |
|||||
#330 | Inconsistent newlines | Confirmed | Bug | closed | Normal | |
Description |
The js files in the folder editor/js/*.js have inconsistant newlines. Sometimes unix style sometimes windows style. I did a dos2unix on all of them otherwise my subversion repository doesn't accept them: svn: Commit failed (details follow): svn: File '/var/www/community/www/controls/FCKeditor/editor/js/fckeditorcode_gecko.js' has inconsistent newlines svn: Inconsistent line ending style |
|||||
#332 | Hitting Enter after links continues the link in the new paragraph | Confirmed Firefox SD-COE | Bug | closed | Normal | |
Description |
Handling of <a>-Tags within <li> is broken. Reproduction at the nightly build just right now :
provides as source : <p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> <ul> <li><a href="http://www.blah.org">www.blah.org</a></li> <li><a href="http://www.blah.org">asd</a></li> </ul> <p> </p> Meaning, the <a>-Tag from the first bullet has been inherited by the second one, which is not what users expect, I guess. |
|||||
#338 | Drag & drop do not honor ForcePasteAsPlainText | Confirmed SF | Bug | closed | Normal | |
Description |
ForcePasteAsPlainText is set to true. On drag & drop I get this HTML: <p class="huvudmall" style="MARGIN: 0cm -8.5pt 0pt 0cm; tab-stops: 65.2pt"><span lang="EN-GB" style="COLOR: red"><font size="3"><font face="Times New Roman">link<o:p></o:p></font></font></span></p> On paste I get this HTML: <p>link</p> |
|||||
#339 | Speller Pages breaks html code when incorrect word is present in html tag | Confirmed | Bug | closed | Normal | |
Description |
When running spell checker in fck editor (cf implementation) if an incorrectly spelt word also appears in an html tag the spell checker attempts to insert it's code breaking the original html. This occurs in any supported browser/os. We have overcome this issue and thought you might be interested in our solution to this. E.g. <img src="whatever.jpg" alt="splling"> <p>Some text with splling error</p> The spell checker returns "splling" as incorrectly spelt but when running the function writeBody in wordWindow.js it finds splling in the alt tag and alters this part of the html causing it to break. We have resolved this by replacing the line begin_idx = wordtxt.indexOf( orig[i], end_idx ); in wordWindow.js on approximately ln 170 with var rExp = new RegExp ( orig[i] + '(?![<]*?>)' ); var searchStr = wordtxt.substr ( end_idx ); begin_idx = searchStr.search ( rExp ) + end_idx; |
|||||
#346 | blank first line in PRE tag causes newline characters to be removed | Confirmed Firefox | Bug | closed | Normal | |
Description |
This issue only affects Firefox (tested with 2.0.0.3). When the first line within a PRE tag is blank, the newline characters in the remaining lines will be removed after clicking on the Source button several times.
<pre> /*** * First line (above) is blank. * Some more text... */ public void testFunction(){ System.out.println( "abc" ); } </pre>
This ticket may be related to ticket #328. |
|||||
#347 | Dropdown Lists don't close on second click | Confirmed | Bug | closed | Normal | |
Description |
None of the dropdown list close when they are clicked if they are currently open. The first click should open the list and a second click should close the list. If you click somewhere else it does close, but a user should not be required to move the mouse to close a list. |
|||||
#350 | FF: <marquee> appends <p> </p> to the output | Confirmed Firefox | Bug | closed | Normal | |
Description |
There was a previous ticket regarding Firefox ignoring the IgnoreEmptyParagraphValue and putting <p> </p> whenever there was whitespace. We are encountering a similar, though likely unrelated problem, in the version that this bug was supposedly fixed in. Firefox ISN'T putting the empty paragraph tags in empty space, which is good. It's not supposed to. However there's an exception to this. If you use the marquee tag within the FCKeditor, it puts the empty paragraph tags before and after it. For example, we put in the following code into the FCKeditor: <marquee scrollamount="4"><font size="4" color="#808000"><strong>Welcome! <a href="http://www.somewebsite.com">Click Here to ask about our Event Sponsorship Opportunities!</a></strong></font></marquee> <p>Just some test text<br /> Hello?<br /> <br /> Okay</p> <table width="400" cellspacing="1" cellpadding="1" border="0" align="center"> <tbody> <tr> <td>Hello?</td> <td>Maybe</td> </tr> <tr> <td>Okay</td> <td>Sweet</td> </tr> <tr> <td>Well</td> <td>let's see</td> </tr> </tbody> </table> and, upon saving our changes to the database and coming back to the page, it turned it into this: <p> </p> <marquee scrollamount="4"><font size="4" color="#808000"><strong>Welcome! <a href="http://www.somewebsite.com">Click Here to ask about our Event Sponsorship Opportunities!</a></strong></font></marquee> <p> </p> <p>Just some test text<br /> Hello?<br /> <br /> Okay</p> <table width="400" cellspacing="1" cellpadding="1" border="0" align="center"> <tbody> <tr> <td>Hello?</td> <td>Maybe</td> </tr> <tr> <td>Okay</td> <td>Sweet</td> </tr> <tr> <td>Well</td> <td>let's see</td> </tr> </tbody> </table> This ONLY happens in Firefox (any version). It does not happen in Internet Exploder. We DO have version 2.4.1, which supposedly fixed the problem with FF and IgnoreEmptyParagraphValue. We could upgrade to 2.4.2 (and may soon), but according to "What's News", the only thing fixed in 2.4.2 was a problem with UTF, so I doubt that would fix this problem. We are aware that the marquee tag is no longer supported in HTML specifications, but we thought it might indicate a problem somewhere and still be fixable, regardless of this lack of marquee support, and especially since it only happened in Firefox, so we thought we should submit this ticket. Thanks, Nicholas |
|||||
#351 | Inserted image gets deleted if the rest of the document is empty | Confirmed Firefox | Bug | closed | Normal | |
Description |
If creating a new document with FCKeditor and you insert an image and then attempt to save the document/submit the form, the result is that the image (and the HTML image tag) gets deleted. I can workaround this by typing in some text, then the image gets saved, but if the image tag/image is the only thing in the document, when saving, the image/img tag gets deleted. This shouldn't happen. A person may want to insert just an image into a document without any text or other tags surrounding it. This bug prevents that from being a possibility. Keep up the great work, FCKeditor is the best! |
|||||
#359 | IE Stripping Object Tag | SF Confirmed IE | Bug | closed | Normal | |
Description |
I am experiencing a problem with FCKeditor while using IE 6. If I load HTML into the editor that contains an object tag with an embed tag (see sample below), the editor strips out the object tag completely. However, the embed tag remains. This does not happen in other browsers. Here is the code I am using. <object id="audio" width="0" height="0"> <param name="console" value="AudioPlayer"> <param name="controls" value="audioWindow"> <param name="autostart" value="true"> <param name="src" value="YOUR_AUDIO_FILENAME_HERE"> <embed name="audio" width="0" height="0" src="YOUR_AUDIO_FILENAME_HERE" console="AudioPlayer" controls="audioWindow" autostart="true"> </embed></object> This only happens when reading the HTML into the editor initially. If I cut and paste this code into the editor and stay in source mode, it is not altered, until after I save it to the server and re-load into the editor. At this point it is still correct on the server, but changed in the editor. If I then save it again, the changed version is saved. If I cut and paste this code into the editor but leave source mode before saving, it is changed. The end result seems to always be stripping out the object tag.
Moved from SF: |
|||||
#360 | Form "name" is set to "[object]" if it contains a field with id="name" | Confirmed IE | Bug | closed | Normal | |
Description |
Paste the following in the source view: <form name="test"> <input id="name" type="text" /> </form> Switch to WYSIWYG and back to source. You will have name="[object]" in the form element. It happens only because the "id" of the input element inside the form is set to "name" (casually the form attribute name). Confimed with IE6. It's not a problem with FF2. |
|||||
#371 | Opera: Dialogs can be resized | Confirmed Opera | Bug | closed | Normal | |
Description |
dialogs can be resized |
|||||
#385 | To locate the cursor in source mode | Confirmed | New Feature | closed | Normal | |
Description |
In others html editors, like FrontPage, when change from design to source view, the position of cursor follow the selected object. Can do this in FCKEditor ? |
|||||
#389 | Past from Word - error when text have "Comments" | Confirmed IE | Bug | closed | Normal | |
Description |
Reciving JS error message, on cleaner screen, when i'm pasting some text from Word that have Comment inside.
Scenario: |
|||||
#390 | Text align should respect EnterMode=br rules | Confirmed IE | Bug | closed | Normal | |
Description |
When using: FCKConfig.EnterMode = 'br' ; FCKConfig.ShiftEnterMode = 'br' ; aligning selection inside the text, doesn't work correctly. I have a few lines of text which are seperated by br's. I then select one of those seperated lines and click on the align center button: all text is aligned center and in the source everything is wrapped inside <p align="center"> .. </p> Using firefox, this works correctly: only the selected line is aligned center. Here a div with align=center is added around the selected text. Is there any way around this? (besides using p instead of br as the FCKConfig.EnterMode) |
|||||
#393 | Cursor inside link but expected to be "after" it | Confirmed Firefox | Bug | closed | Normal | |
Description |
This problem is hard to explain, but easy to repeat: Go into Internet Explorer, create a hyperlink using the toolbar hyperlink tool, and click "Ok". Put your cursor on the right side of the link and start typing. Now do the same thing in Firefox. See the difference? In Internet Explorer, the new text you type isn't part of the link, but it is in Firefox. In fact, the only way to close the link is to now use the source button. Just aggravating. Thanks, Nicholas |
|||||
#395 | Changing visual styles of parent doc | Confirmed IE | Bug | closed | Normal | |
Description |
IE 6 under win XP when the page with FCKEditor loaded you focus on editor area it enables toolbars then you focus out of area toolbars are still active then you click e.g. list button and outer element becomes a list this works for strong, italic, underline, strikethrough, superscript, subscript, indent, outdent, text-align, hr, br buttons as well. |
|||||
#403 | Switching from HTML to Source adds \n in STYLE tag | SF Confirmed IE | Bug | closed | Normal | |
Description |
Initial header of the page was: <head> <title>FCKeditor - What's New?</title> <style type="text/css"> body { font-family: Arial, Verdana, Sans-Serif; } Second switching from HTML view to the Source view adds \n: <head> <title>FCKeditor - What's New?</title> <style type="text/css"> body { font-family: Arial, Verdana, Sans-Serif; } Next one will add one more symbol of the new line and so on.
Moved from SF: |
|||||
#404 | PRE and Line Breaks | SF EK SS Confirmed FireFox | Bug | closed | Normal | |
Description |
When I choose "Formatted" format and then write some text containing new line characters and/or indentation (tabulations) I get the incorrect html code. I used FCKeditor 2.0 FC. I wrote: This is my first line. This is indented text. Then I clicked on "Source" button in FCK and I got the following html code: <pre>This is my first line.<br/> This is indented text.</pre> First of all there is no indentation. Secondly, the PRE element tells visual user agents that the enclosed text is "preformatted", so there should be no html tags (e.g. BR) in it. It should be just what I had written with tabs and new line characters. Thirdly, switching between source and editor (pressing "Source" button) increases number of BR tags. When I clicked for the first time I received only one BR, but after next click I got 2 BR tags, then 4 BR tags and so on. This is what I got after three switches between "Source" and editor: <pre>This is my first line.<br/> <br/> <br/> <br/> This is indented text.</pre>
Moved from SF: |
|||||
#415 | .NET Connector could not run in medium trust. | Confirmed | Bug | closed | Normal | |
Description |
Dear Fred, Is had an issue of the .Net connector not being able to run in medium trust in my .Net 2.0 environment. There for I downloaded your sourcefiles in order to be able to debug my situation. I also converted the project to VS2005/.NET 2.0. I made a minor change to FileWorkerBase.UserFilesDirectory() (one Configuration import, and hostingenvironment.Mappath) And a major change to Util.CreateDirectory(path) You created the directory by recursively searching for a parent directory and then creating the child directories one by one by using an imported (Com?) dell. I circumvented this method and just called the createdirectory method, of which I know it can create nested directories at a time), and now it works. Maybe I made your code less generic, but now it works on my host. Hope I've been a bit of help, best regards, Robert Sirre |
|||||
#427 | Bulleted lists don't align properly in Firefox | Confirmed Firefox | Bug | closed | Normal | |
Description |
Centering and right justifying a bulleted list doesn't behave properly in Firefox. IE7 worked correctly. Using the test site:
Note: Make sure that the browser cache is cleared before trying to reproduce. |
|||||
#430 | Remove link issue when class attribute is defined | Confirmed Firefox | Bug | closed | Normal | |
Description |
This issue exists on Firefox 2.0.0.3. Doesn't appear to be an issue with IE7. When a link tag with a defined class attribute is removed using the "Remove link" button, the link tag is converted to a span tag instead of being removed.
<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/" class="myCssClass">FCKeditor</a>.</p>
|
|||||
#435 | No EnterMode config key in ColdFusion integration files | Confirmed | Bug | closed | Normal | |
Description |
I haven't actually tested these files as I use my own integration file, but I noticed that there are no EnterMode or ShiftEnterMode config keys in the ColdFusion integration files distributed with fckeditor (both fckeditor.cfm and fckeditor.cfc). This probably means that these config settings will be ignored if they are found in the config struct passed to the fckeditor module or component. |
|||||
#436 | Firefox spellcheck no longer works by default | Confirmed | Bug | closed | Normal | |
Description |
Prior to version 2.4.2 (tested in 2.3.2), Firefox 2.0.0.3's built-in spellcheck for textareas worked by default, highlighting misspelt words automatically. Now one must right-click and tick "Spell-check this field" each and every time FCKeditor is started to get this useful functionality. |
|||||
#439 | IE: CTRL+Click to open links in a new window | Confirmed IE Review- | New Feature | closed | Normal | |
Description |
It does not seem possible to follow a link using IE7. For example, the "You are using FCKeditor" link in the Demo pages. NOTE: IE6 and Firefox work fine, ctrl-click and shift-click open the window. I've had a search of the existing tickets and can't find anything relevant. However, this seems such a fundamental problem I can't believe it hasn't already been reported. Fingers crossed you've already investigated this and know of a workaround. If there is no workaround, might I suggest adding an "Open Link" menu item to the link context menu and an "Open Link" button to the Link Editor dialog. I had a look at the problem and I suspect the event model is incorrect for contenteditable elements. I think this event is bypassing the normal event handlers and cannot be caught. |
|||||
#440 | FF: Whole paragraph is selected on right click | Confirmed Firefox CantFix | Bug | closed | Normal | |
Description |
hi try this try to right click at the end of this code :<p><font size="-2">©2007 Google</font></p> in firefox we are selecting the whole code i didn't test it on another tags but i found it in FF in ie its working regards |
|||||
#455 | Problem when select a chinese files in FCKeditor | Confirmed | Bug | closed | Normal | |
Description |
We can upload a chinese file with FCKeditor, but when we want select the file, it don't show us chinese Characters, it show us only some strange characters 測試1.GIF. When you go to browse server, you can see that the file is show with this strange characters. On the server self the file is stored right. Tested it with Linux and Windows OS, With Firefox and Internet Explorer I attached some files that you can test it |
|||||
#460 | when putting style="border:1px solid black; border-top:0px" in an elemint, it puts a mozilla specific CSS attribute for one of the values | Firefox Confirmed CantFix | Bug | closed | Normal | |
Description |
when putting style="border:1px solid black; border-top:0px" in an elemint, it puts a mozilla specific CSS attribute for one of the values. For instance putting this: style="style="border:1px solid black; border-top:0px" results in: style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: 0px 1px 1px;" which is fine if you are viewing the page in FF, but in IE the border color is off. I tried to use the nightly build to test to see if it was fixed, but the nightly build wouldn't even load for me or for another person I asked to view. Sorry if its a dupe. |
|||||
#471 | Email Link HTML Encoding Problem | Confirmed | Bug | closed | Normal | |
Description |
When creating a link of type "E-mail", upon entering content into the subject or body field if a british pound symbol (£) is entered the resultant html for the pound symbol becomes "%C2%A3" which displays "£" when decoded. The problem can easily be fixed by going through the source and removing "%C2" everywhere it occurs, but this then breaks the link editor. This can be replicated on the nightly build of the editor. |
|||||
#479 | o:p tags cause linebreak problems in IE6/7 | Confirmed IE Review+ | Bug | closed | Normal | |
Description |
Occurs in IE6 and IE7. Does not occur in Firefox. How to reproduce: In source mode, add the content: <o:p>Some Content</o:p> Exit source mode. Press Enter. You will find that no linebreak occurs. When you return to the source view, you will see a </o:p><o:p> was added. This occurs even if the <o:p></o:p> is between <p></p> tags. And further, MS Word sometimes leaves a trailing <o:p></o:p> at the end of lines when importing. This results in people asking, "Why is my enter key not making a line break?" |
|||||
#481 | FF: Image preview doesn't display | Confirmed Review+ | Bug | closed | Normal | |
Description |
In firefox only, When you select an image in image manager , the height and width are set to 0 in preview . If you want to display you must click on refresh . |
|||||
#486 | Cursor navigation difficult with multiple smileys or images in FF2 | Confirmed Firefox | Bug | closed | Normal | |
Description |
To Reproduce:
Result: This issue only occurs in Firefox. |
|||||
#487 | Click and drag resizing photos in IE7 doesn't... | Confirmed IE | Bug | closed | Normal | |
Description |
When you insert a photo in IE 7 and resize the photo using the Image Properties windows, it works fine. When you resize a photo by clicking on it and dragging one of the boxes, it adds stye="width: 100px; height: 100px;" to the image code and doesn't adjust the height and width variables... When you save the page, it removes the style and leaves the image the same size. |
|||||
#488 | FF: Strange cursor behavior with lists after viewing source | Confirmed Firefox | Bug | closed | Normal | |
Description |
To Reproduce:
Result: This bug does not happen in IE. It is exclusive to Firefox. |
|||||
#493 | Submit button issue - naming conflict | Confirmed | Bug | closed | Normal | |
Description |
I just spent a good few hours over a problem with the Save button on the toolbar not working. I eventually tracked down the problem, so I thought I'd post this in case it's of any help or even worth considering a change to the code to get around it.
The problem is with the html code for my submit button:
3) <input type="submit" name="submit2" value="Save" /> - toolbar save button works So the bug (2) is some sort of conflict over the name "submit". The javascript error is: Error: A.submit is not a function Source File: http://phpmap-local/php/fckeditor/editor/js/fckeditorcode_gecko.js Line: 66 Browser: Firefox 1.5 linux My suggestion would be to name whatever it is in the code fck_submit or something to make name conflicts less likely - naming my submit button 'submit' is not that unlikely. |
|||||
#501 | Editor loses styles in IE when switching between WYSIWYG and Source view repeatly | Confirmed IE | Bug | closed | Normal | |
Description |
On IE 7 the following happens (even with the online demo):
<p><span class="Title"> <p>line 1</p> <p>line 2</p> </span></p>
<p> <p> </p> </p> <p>line 1</p> <p>line 2</p>
|
|||||
#515 | Tables are rendered in quirks mode | Confirmed | Bug | closed | Normal | |
Description |
This is a strange behavior: Set in the config file a doctype to trigger standards mode like FCKConfig.DocType = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' ; now go to edit and in the source mode insert this test code <div style="width:300px; border:20px solid black; padding:30px">If this is rendered in standars mode it will have the same width as the red bar</div> <div style="width:300px; background-color:blue;"> </div> <div style="width:400px; background-color:red;"> </div> <div style="font-size:10px; font-family:Verdana"> Text outside the table <table border="1"> <tr> <td>Text in the table</td> </tr> </table> If this is rendered in standards mode the text size inside the table will be the same as this one. </div> Expected results: the content is rendered using the standards mode.
Actual results: That doesn't make sense, if the page is rendered in standards mode then the styles should be inherited in the table (and checking the compatMode in Firefox show that it's set right) Now use full page mode (example 7), the full page content now is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Quirks test</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <div style="width:300px; border:20px solid black; padding:30px">If this is rendered in standars mode it will have the same width as the red bar</div> <div style="width:300px; background-color:blue;"> </div> <div style="width:400px; background-color:red;"> </div> <div style="font-size:10px; font-family:Verdana"> Text outside the table <table border="1"> <tr> <td>Text in the table</td> </tr> </table> If this is rendered in standards mode the text size inside the table will be the same as this one. </div> </body> </html>
And now the results are: What's more, trying to get a testcase to find if this is a problem with designMode itself shows it correctly in Firefox also <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd"> <html> <head> <title></title> <style> </style> <script language="javascript"> function editDocument() { var html = document.body.innerHTML; document.designMode='on'; document.body.innerHTML = html; } </script> </head> <body> <input type="button" onclick="editDocument(); return false;" value="Enable designMode"> <div style="width:300px; border:20px solid black; padding:30px">If this is rendered in standars mode it will have the same width as the red bar</div> <div style="width:300px; background-color:blue;"> </div> <div style="width:400px; background-color:red;"> </div> <div style="font-size:10px; font-family:Verdana"> Text outside the table <table border="1"> <tr> <td>Text in the table</td> </tr> </table> If this is rendered in standards mode the text size inside the table will be the same as this one. </div> </body> </html> |
|||||
#517 | Automatic Color does not work | Confirmed | Bug | closed | Normal | |
Description |
The "Automatic Color" does not work. I was able to get any other color from the window dialog, but I couln't set "Automatic Color", Thanks in advance. |
|||||
#519 | JavaScript API documentation | Confirmed V3ProtoStruct Review+ | Task | closed | Normal | |
Description |
I think that we can try to use JSDoc to generate full documentation for the js files and that way get a better overview of the code and help the people to use better the API and get involved with the project. I'm gonna take a look at it and do some little test to see if it can really help us. (I wanted to check if the range implementation could help me to fix a bug, but the first part is to read the file and see what methods does it provide, so having a parser that summarizes it is very helpful) |
|||||
#520 | Select Field doesn't accept values with & | Confirmed, IE | Bug | closed | Normal | |
Description |
When editing the properties of a select field, options which the text and values have ampersands, with no spaces near it, are not applied and retrieved correctly. This is a IE only issue. Works well with Firefox. Steps to reproduce
|
|||||
#523 | StartupFocus=false being ignored in IE 6.0 | SF Confirmed IE | Bug | closed | Normal | |
Description |
I started this new bug so I can attach my test files. This is actually a comment on bug [ 1313002 ] StartupFocus=false being ignored in IE 6.0. I can confirm this behavior in version 2.2. I don't know what is happening but I managed to conjure an example. I have no clue what causes the behavior. Just try the example (test.html) on IE6.0 and see what happens. A similar behavior occurs in our application, where we try every trick in the book to prevent browser caching. If you need more info, I'll be happy to provide anything I can.
Moved from SF: |
|||||
#525 | FF: Sucessive DIVs are joined wrongly with del or backspace | Confirmed Firefox | Bug | closed | Normal | |
Description |
Paste the following in the Source View: <div class="title">headline</div> <div class="text" style="color:Red">body</div> When trying to join both DIVs by using del or backspace, we have the following result: <div class="text" style="color:Red">headlinebody</div> The attributes of the second DIV prevailed over the first one. The opposite is expected though. To note that it doesn't happen if EnterMode=div. Works well with IE6. |
|||||
#534 | Wrong cursor positioning with lists | Firefox Confirmed | Bug | closed | Normal | |
Description |
BUG 1: First, you will notice the cursor is askew, down a few pixels. BUG 2: If you type "Hello<enter>" you will see the cursor jump down to the next line BUG 3: If you type any more, the characters are invisible. There is no record of having typed them if you switch back to source. |
|||||
#535 | Enter key inserting multiple breaks after using shift-enter | Firefox Confirmed | Bug | closed | Normal | |
Description |
After the word "Hi", you will see the cursor jump down 4 lines, instead of 1. |
|||||
#536 | Style Selection checking of parent elements | Confirmed Review+ | New Feature | closed | Normal | |
Description |
The Styles Configuration functionality almost does what I require. What I'd like to be able to do is define several styles, using classes, to be assigned to tables, table rows, and table cells. I can get it working, but only with tables, and only in IE. Why not walk up the DOM when checking the Styles context sensitivity, and allow the application of styles to parent elements (just the first tag-matching parent)? In this way, simply putting my cursor anywhere within a td would allow me to change the style of that parent td, the parent row, the parent table, etc... I've seen this functionality in similar WYSIWYG HTML editors, and it'd be great in FCKEditor. |
|||||
#539 | FF: if the HTML has a table in it and you right click in the table while in FCKeditor, the cursor jumps to the top of the HTML | Firefox Confirmed | Bug | closed | Normal | |
Description |
Only in Firefox, if you have a table in your HTML and then while you are in FCKeditor you right mouse click when your cursor is in the table or table cell, the editor jumps up to the top of the HTML no matter where you were when you clicked. Wrote to Frederico about this and here is his reply: I was able to create a very simple test case for this bug, based on your pages. In Firefox, if you scroll down the contents and right click inside the table, it will scroll up automatically. If you instead click at the "More text" phrase at the very end, you will have no problems. It only happens if the editor is inside a table, and if you click in a table in the contents. There is no solution for it for now, and no predictions, but this TC is an important step to find out something. Frederico Caldeira Knabben |
|||||
#550 | IE fails the _tests/manual/fckeditorapi | Confirmed IE | Bug | closed | Normal | |
Description |
IE doesn't fire the unload event of the inner frame until the whole parent window is unloaded. Simplified testcase available in [365]. This means that even if an instance of FCKeditor has been removed it's still available in the FCKeditorAPI.__Instances object. |
|||||
#555 | Creating Email links generates "Object doesn't support this property or method" Script Error | Confirmed IE7 | Bug | closed | Normal | |
Description |
Tested in Demo, and nightly build as of June 11 5:42 EST. Use the attached text file as testing html. This problem seems to be related to something in that html. Browser: IE7 as of June 11th fully patched only extras are Google Toolbar OS: Windows XP Pro fully patches as of June 11th
At this point i get the error message mentioned in the short summary. i'd attached a screen shot of the message and the full screen of what things look like in my browser. The FCKeditor seen there is the nightly build downloaded today June 11th around 5pm EST. |
|||||
#581 | FitWindow is broken if <input name="style"> is found inside the editor form | Confirmed IE | Bug | closed | Normal | |
Description |
In IE, if a <input name="style"> field is available inside the editor's <form>, a JavaScript error is thrown when clicking in the FitWindow button. |
|||||
#598 | Create ToolbarBand CSS Class | SF Confirmed | New Feature | closed | Normal | |
Description |
Need a different CSS class for each inner table band of the toolbar, named ToolbarBand (rather than Toolbar, of which applies to the outer toolbar table). Namely:
We've made the changes in our version, which allows for a background image of the toolbar band (with that cool XP-style vertical gradation behind the buttons). Thanks!
Moved from SF: |
|||||
#612 | Source code hightlighting | SF Confirmed | New Feature | closed | Normal | |
Description |
Hi, building in sourcecode highlighting would be great. Parsing the source when going to html mode, and parsing it back when going to WYSIWYG mode. Should be to resource intensive. example code (thnx @ Quist): // parse all tags and make red defaultTag = /(<([\s\S]*?)>)/gi; code = code.replace(defaultTag, "<font color='#FF0000'>$1</font>"); // give centain elements a other color var aItems = [['style','#00FF00'], ['script','#00FF00']]; for (var i = 0; i < aItems.length; i++) { var sTag = aItems[i][0]; var re = new RegExp("(<(" + sTag + "|\/" + sTag + ")(.*?)>)", "gi"); code = code.replace(re, "<font color=" + aItems[i][1] + ">$1</font>"); } // make attribute's blue var reAttr = new RegExp("(=((\"|")(.*?)(\"|"))( |\/|>))", "gi"); code = code.replace(reAttr, "=<font color='#0000FF'>$2</font>$6");
Moved from SF: |
|||||
#620 | Set image size in % | SF Confirmed | New Feature | closed | Normal | |
Description |
It is impossible to set the image size of an inserted image in % You can enter the value (e.g. width : 100%) in the dialog, but nothing happens. When opening the dialog again, the value input box is empty
Moved from SF: |
|||||
#633 | Change cyclis search implementation | SF Confirmed | New Feature | closed | Normal | |
Description |
Hi. Would be nice if you could add a cyclic search checkbox to the find text dialog. Today: If cursor is in middle of text and you search for a word that happend to be below cursor you find it, but you will not if word is above the cursor position. Implementing a cyclic seach checkbox in the search dialog with default on, would make it more intuitive.
Moved from SF: |
|||||
#635 | Open properties dialog when double clicking on objects | Confirmed Review+ | New Feature | closed | Normal | |
Description |
The relative dialog should open when double clicking on objects like images, anchors, flash, form buttons or even tables (in the border... IE only I guess). |
|||||
#662 | Perl CGI samples are broken | SF Confirmed Review+ | Bug | closed | Normal | |
Description |
Each of the _samples/perl/sample*.cgi programs includes code to override the value of $BasePath. The value for the override is computed by manipulating $ENV{'PATH_INFO'}, but it ought to be manipulating $ENV{'REQUEST_URI'} instead.
Moved from SF: |
|||||
#676 | Form field loses name if moved right after placement | Confirmed IE Review+ | Bug | closed | Normal | |
Description |
If I add an element with a filled name property and I move it right after submitting, the entered name property is lost. The bug doesn't occur if I save, or show the code first. The bug occurs for form fields e.g. a textfield. This bug also occurs on the demo site. Maybe a related bug is the name of a link that isn't saved in the link.
Moved from SF: |
|||||
#681 | SpellerPages ignores text after links | SF Confirmed HasPatch | Bug | closed | Normal | |
Description |
When using the SpellerPages spell check function, try spell checking the following: This is mispeled here is a link and this is mispeled too where the word "link" is a link. SpellerPages detects the first "mispeled" as an error but ignores the one after the link.
Moved from SF: |
|||||
#692 | [SS] Some style definitions should be blocked in the combo | SF Confirmed Review+ | Bug | closed | Normal | |
Description |
When displaying styles available from fckstyles.xml in styles combo each option is being styled according to the style it belongs to. But if the style has something like "padding-left" attribute, let's say 180px, then the option becomes invisible (the padding is applied to the combo's option as well and it's being displaced completely to the right). It's needed to introduce some !important attributes for combo's options that couldn't be overriden by styles from fckstyles.xml
Moved from SF: |
|||||
#703 | FF: No context menu when right clicking a select component | SF Confirmed FireFox CantFix | Bug | closed | Normal | |
Description |
Linux FC4 Firefox 1.0.7 FCK 2.2, 2.1.1 When right clicking on a "select" component, no context menu appear. Sometimes it's possible to left click on a "select" component and then right click on an empty editor space to get the context menu to appear. But this should not be a regular behaviour, does it? Anyway, I propose a "properties" button on the toolbar, so we may select any component with the left button and then click on the "properties" toolbar button. Regards, Cristiano da Cunha Duarte
Moved from SF: |
|||||
#738 | Cannot change the button type after creating it | Confirmed IE Review- | Bug | closed | Normal | |
Description |
Once inserted, one cannot change the button type of a button in a form anymore. Steps: - Insert form - Insert button (type = button) - Open contextmenu of button - Type field is disabled.
Moved from SF: |
|||||
#739 | FF: Button caption is editable with arrow keys | SF Confirmed Firefox | Bug | closed | Normal | |
Description |
With the arrow keys, one can move the cursur into a button inside a form and edit its label, but the contents aren't saved.
Moved from SF: |
|||||
#746 | Comments inside SELECT and OPTION tags. | SF Confirmed IE CantFix | Bug | closed | Normal | |
Description |
Internet Explorer removes HTML comments which are inside SELECT and OPTION tags. As an example: <form><!-- form --> <select><!-- select --> <option><!-- option --></option> </select> </form> becomes: <form> <!-- form --><select> <option selected="selected"></option> </select> </form> This also proves to be a problem when working with ProtectedSource since it makes use of comments.
Moved from SF: |
|||||
#753 | Arrowing over an image skips the next char (Firefox only) | Confirmed Firefox SF CantFix | Bug | closed | Normal | |
Description |
The bug occurs when using the arrow keys to navigate text in firefox. If there is an image within a line of text, arrowing right across it will cause the cursor to skip the character immediately after the image. Example: (the | represents the cursor and each iteration represents the right-arrow keypress) 1: some te|xt[IMAGE}some more 2: some tex|t[IMAGE]some more 3: some text|[IMAGE]some more 4: some text[IMAGE]s|ome more
Moved from SF: |
|||||
#768 | Image height and width in IE6 | SF Confirmed IE Review+ | Bug | closed | Normal | |
Description |
Hi, if you add a new image with IE6 to the editor, it will create a correct image tag with "width" and "height" attributes. If you resize the image, you get additionally the "style" attribute with "width" and "height" and both sizes differs. Example: 1.) Added image: <img height="556" width="417" alt="" src="/_userfiles/Image/DSCN0082.jpg" /> 2.) Resized it (smaller): <img style="WIDTH: 315px; HEIGHT: 451px" height="556" alt="" width="417" src="/_userfiles/Image/DSCN0082.jpg" />
Moved from SF: |
|||||
#798 | Image inside floating DIV looses selection with Context Menu | SF Confirmed IE Review+ | Bug | closed | Normal | |
Description |
If you add an image into a Div then you apply a style to the div like this <div style="float:right"><img ...> </div> if then you select the image and get the properties, it appears that all the properties are lost. But if you go to the source code you can see that they are not lost. Following the source code with debugger, I noticed that this instruction in fck_image.js var oImage = FCK.Selection.GetSelectedElement() ;
Moved from SF: return an undefined element. I have tested it with IE6 on WinXP e win2003. |
|||||
#799 | FF: Drag and drop (move) table does not work | SF CantFix Confirmed FireFox | Bug | closed | Normal | |
Description |
It seems one cannot move (drag and drop) a whole table (like you move images) when using Firefox (2.x or 1.x) both on XP and Mac OS X (or Camino for that matter). One can do that with IE (it shows the cross-shaped symbol on left-click and moves the whole table where you drop it). May be related to the copy/paste table bug (1255029)? Panos
Moved from SF: |
|||||
#805 | Keystroke bypass disabled buttons in source mode | SF Confirmed Review+ | Bug | closed | Normal | |
Description |
When in source mode, certain functions are grayed out (find, font color, etc). When these functions are assigned to a keystroke they are still accessible via that keystroke. To reproduce:
Result: Firebug reports error "oEditor.FCK.EditorDocument has no properties" --- Noticed also that there are a lot of functions (add bullets, etc) that aren't grayed out in the button bar that also cause the same Firebug error report. --Michael
Moved from SF: |