Custom Query
Results (7301 - 7400 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#8394 | Table Row deletion freezes IE9 | Bug | Normal | General | ||
Description |
Test in IE9 on the current CKEditor demo. Create a bulleted list with two items. Press enter twice to get out of the list then create a table using the default table settings. Place cursor in first cell of table, right click, delete row. Cursor gets stuck between the list and the remaining table row. Editor appears frozen though using the resize handle or switching to source mode will break the lockup. This is the HTML that corresponds to the steps above before deleting the row. <ul> <li> Item 1</li> <li> Item 2</li> </ul> <table border="1" cellpadding="1" cellspacing="1" style="width: 500px;"> <tbody> <tr> <td> <span></span></td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table> <p> </p> |
|||||
#8395 | IE6-10: Clicking enter after selecting table, page-break or hr causes JS error | Bug | Normal | Core : Selection | ||
Description |
Table
Page-Break
Alternative STR:
Horizontal line
|
|||||
#8396 | <p> inside <strong> inside <p> erases all the text beneath | Bug | Normal | General | ||
Description |
Hi First of all i'm using FCKeditor 2.6.2 version (2.6.6 gives a bit different error - which i will describe beneath) In order to recreate the bug in the text editor I entered the source mode of the editor (clicked the source button in the toolbar) and typed : <p>one</p> <p><strong><p>two</p></strong></p> <p>three</p> notice the "<p>two</p>" between the strong tags not if u switch back to normal mode and i see the one two three in the editor , and i select the entire "two" word and click on the "bold" button on the toolbar i get the line being deleted and the line beneath it too... if I type the same text but without the extra <p> tags inside the <strong> tag all works well, this is looks like this <p>one</p> <p><strong>two</strong></p> <p>three</p> NOW, i did some debugging and found out that in the fckstyles.js file in the RemoveFromRange function , when i got the extra <p> tags the FCKEDITOR recognize the word "two" as DispHTMLDocument node with NodeType= 3 and NodeName= #text While without the extra <p> node the FCKEDITOR recognize the word "two" as DispHTMLPhraseElement node with NodeType= 1 and NodeName= #STRONG, How can it be fixed? cause I only gave a simple example, but this happens in larger text in which for some reasons the extra <p> appears allot! Same input in 2.6.6 version gives the following results after selecting the "two " word (with a little space after it) and click on the bold button i get js error object required in fckdomtools.js cause existingNode and after I click yes/no in the alert message the source of the text looks like this <p>one</p> <p> <p> </p> <p>three</p> </p> <p><span id="1316587844776S" style="display: none"> </span>two</p> <p><span id="1316587844745E" style="display: none"> </span></p> if i select only the "two" without any spaces before or after the source of the text looks like this <p>one</p> <p> <p> </p> <p>three</p> </p> <p>two</p> notice that in both cases the "two" being shifted to the bottom of the page Thanks ahead, Regards, Daniel.R |
|||||
#8397 | Text alignment icons not working when 'justifyClasses' was used in the configuration | Bug | Normal | UI : Toolbar | ||
Description |
Steps to reproduce:
justifyClasses : ['rteleft', 'rtecenter', 'rteright', 'rtejustify'] or CKEDITOR.config.justifyClasses : ['rteleft', 'rtecenter', 'rteright', 'rtejustify'];
|
|||||
#8399 | Resize table handles misplaced in RTL mode | Bug | Normal | General | ||
Description |
Tested in FF 3.6 Set the editor to RTL mode. We have the <html> tag within the editor iframe set to rtl: <html class="CSS1Compat" lang="ar" dir="rtl"> Insert a table. Click on the table. The resize handles will appear in the left side of the editor, where the table would be in LTR mode. This is probably a FF bug but there may be a workaround. |
|||||
#8400 | Cannot edit cell properties on multiple cells or single cell in IE when text is selected | Bug | Normal | CKEditor 3.6.3 | Core : Tables | |
Description |
When more than one cell is selected in IE8, you get an error when pressing OK in the cell properties dialog. Steps to reproduce:
Expected result: Dialog closes and changes are applied. Actual result: Javascript error occurs and dialog is not closed. Tested on: 3.6.2, nightly build |
|||||
#8401 | Accessibility: Problems navigating radio buttons in a dialog using the keyboard | Bug | Normal | Accessibility | ||
Description |
When radio buttons are included in a dialog, keyboard navigation does not work correctly. The following issues occur:
To reproduce, add the following UI element to a dialog and try to navigate through it using only the keyboard: { type : 'fieldset', label : 'Radio Buttons', children : [ { type : 'radio', id : 'type', required : true, 'default' : 'one', items : [ [ 'Radio1', 'one' ], [ 'Radio2', 'two' ] ] } ] } |
|||||
#8403 | IE: Pasting content from notepad which includes blank lines is not working correctly | Bug | Normal | Core : Pasting | ||
Description |
When text content in notepad contains blank lines and it is pasted into CKEditor, some of the blank lines are removed in IE. In FF, this works correctly. To reproduce, paste the following content into notepad and then into CKEditor in IE: aaaa bbbb cccc dddd Note: There are 2 blank lines between 'aaaa' and 'bbbb' in this sample content and one blank line between the remaining content. However when this content is pasted into CKEditor in IE, there is only one blank line between 'aaaa' and 'bbbb', and there are no blank lines in the remainder of the content. The markup generated for this in source view is different in IE and FF: HTML in IE: <p> aaaa</p> <p> <br /> bbbb</p> <p> cccc</p> <p> dddd</p> HTML in FF: <p> aaaa<br /> <br /> <br /> bbbb<br /> <br /> cccc<br /> <br /> dddd</p> |
|||||
#8404 | Paste as plain text not working correctly with content from Word that includes blank lines | Bug | Normal | Plugin : Paste from Word | ||
Description |
When text content in Word contains blank lines and it is pasted into CKEditor as plain text, some of the blank lines are removed. This seems to happen across all browsers - I have tested FF, IE and Chrome. To reproduce, enter the following content in Word. Note: There are 2 blank lines between 'aaaa' and 'bbbb' and one blank line between the remaining content. aaaa bbbb cccc dddd Now copy this content from Word and paste in into CKEditor using the 'Paste as Plain Text' dialog. Problem: Some of the blank lines have been removed in CKEditor. There is now only one blank line between 'aaaa' and 'bbbb', and there are no blank lines in the remainder of the content. The HTML generated for this content is: <p> aaaa</p> <p> <br /> bbbb</p> <p> cccc</p> <p> dddd</p> Note: This is the same markup that is generated for a slightly different usecase in ticket #8403, so the 2 issues may be related. |
|||||
#8407 | aria-setsize and aria-posinset incorrectly set on Styles drop-down | Bug | Normal | CKEditor 3.6.3 | Accessibility | |
Description |
The items in the Styles drop-down do not have their correct aria-setsize and aria-posinset attributes set.
For example, when the selection is on a default paragraph and the Styles drop-down is displayed, the first item in the list has:
These values should be: |
|||||
#8408 | Text colors | Bug | Normal | General | ||
Description |
Bug: the colort is not chosen in color palette and its ID is not under the color square |
|||||
#8409 | Window scrolling on paste (cmd+v) | Bug | Normal | General | ||
Description |
Hi guys, I'm using CKEditor 3.6.2 and working in Firefox 6.0.2 (Mac OS X). When I paste (cmd+v) a text into the textarea of the CKEditor the whole window scrolls down (how much depends on the amount of text i paste) which means that every time I paste a piece of text to the CKEditor field I need to scroll back upp to be able to continue to work in the textarea. This problem can be reproduced on your demo page (http://ckeditor.com/demo). |
|||||
#8410 | Mac FF / Safari styles behaving incorrectly | Bug | Normal | Core : Styles | ||
Description |
It would appear that in Mac Safari the cursor position isn't consistently being positioned within a style. Here are some steps to reproduce what we have been seeing:
I have only been able to reproduce this on a Mac, we are using OS X 10.6.6. In windows the cursor is consistently positioned within the style element. Another issue I have noticed during my tests, is when you execute a ctrl+a or apple+a to select all the text, and press delete, the bold button remains highlighted. The style does not exist on the document, so the bold button should be unhighlighted. |
|||||
#8413 | Link editor freezes when comments exists between tables | Bug | Normal | CKEditor 3.6.3 | Core : Styles | |
Description |
This bug was reported as fixed in ticket #8232 but I am able to replicate the fix. The style/plugin.js file does not exist in my /plugins/style dir. I have however been able to better narrow down the issue. It is not an option for me to delete comments since this fix applies to many preexisting files. I replicated the issue in the ckeditor demo by creating two tables with a HTML comment between each table. Then added text to a cell after the comment and tried to make it a link. The link editor freezes. The following HTML will create the same error: <table> <tbody> <tr> <td> </td> <td> </td> </tr> </tbody> </table> <!-- TEST COMMENT --> <table> <tbody> <tr> <td> asdf</td> <td> </td> </tr> </tbody> </table> <p> </p> The result adds span tags around the text and does not create a link. This was replicated FF on OSX. |
|||||
#8414 | Ticket #6178 reinduced | Bug | Normal | Core : Selection | ||
Description |
Please refer to the below tickets for reporduction: #6192 : [WebKit] Inserting smileys was not working because of editor focus issues. #6178 : [WebKit] Inserting elements by code was failing if the editor didn't receive the focus first. #6179 : [WebKit] The Image dialog was not working if the editor didn't receive the focus first. |
|||||
#8415 | [IE] Undo when table is selected results in an error (still causing) | Bug | Normal | General | ||
Description |
at Demo site (http://ckeditor.com/demo) I suppose this is v3.6.2. The original ticket(#7002) is closed but it still causing script error on IE.
|
|||||
#8417 | [IE] Table resize points are visible outside workspace | Bug | Normal | Core : Tables | ||
Description |
[IE 7, 8, 9] Table resize points are visible outside workspace. Steps to reproduce:
|
|||||
#8419 | Empty paragraph added when switching to and from source view | Bug | Normal | General | ||
Description |
Start with the following HTML <h1>Submit A Ticket</h1> <div> <div> </div> </div> In content editing mode, click on the "Submit A Ticket" text. Click the source button. There is an empty paragraph added to the end of the HTML. Appears to be related to having the last element having nested tags. Related empty paragraph problem, if you press the down arrow to the bottom of the document in content editing mode you will get an empty paragraph as well. This also only occurs if the last element is nested. |
|||||
#8420 | [IE8] Resize handles sometimes show up around paragraphs and bulleted lists | Bug | Normal | General | ||
Description |
After applying a style on a paragraph or turn some paragraphs into a list, resize handles show up just like it was an object/image. Editing is then nearly impossible. |
|||||
#8421 | Language files not loading properly for the a11yhelp plugin | Bug | Normal | General | ||
Description |
To Reproduce:
Problem: The help dialog is displayed and the contents are still in English. The contents should now be displayed in Hebrew. We believe the issue is that the previous language is not getting overwritten when a new language is selected. The following code change in a11yhelp\plugin.js seems to fix this problem: Current Code: CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ] ); Proposed Fix: CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ],true ); This issue arose during our translation process for 3.6.2. It is an important issue for us to address in 3.6.x since all our language resources for this plugin are now located in the a11yhelp\lang directory. |
|||||
#8422 | Anchor name is uri escaped | Bug | Normal | General | ||
Description |
The anchor name is uri escaped when making it with non-alphabetical characters.
|
|||||
#8423 | Unclosed tags are vanished in source view when fullPage -true Mode | Bug | Normal | UI : Source View | ||
Description |
And enter the unclosed tag like below in source mode. <font name="3"> Test Ckeditor go to Editor mode and come back to source the entered content is vanished. The above scenario is not happening in fullPage False. It is automatically closing the unclosed tags. |
|||||
#8424 | ContentEditable, Image and Chrome | Bug | Normal | General | ||
Description |
Support of contentEditable with Chrome (current v14) behaves in a weird way. For example, copy/paste HTML in the source mode on the demo page : <p><span contenteditable="false"><img contenteditable="true" src="http://a.cksource.com/c/1/inc/gfx/logo.png" /> </span></p> which is like a structure we need for our website. With Chrome, you can't write anything before or after the image even though <p> is editable (By the way, with Firefox you can't write before either but you can after). But the main issue is that when you try to remove the image with backspace :
Another problem is that you can't edit the properties of the image with right-click. You can with double-click but all the properties are empty, especially the URL and then you have an alert when validating on OK. |
|||||
#8427 | Opera: Problem with typing around contentEditable="false" element | Bug | Normal | General | ||
Description |
Result:First letter is typed behind image but next cursor jumps to the beginning of the image and text is continued before the image. This issue has been reproducible from CKEditor 3.3 (Before CKE 3.3 cursor was lost after first letter was typed). |
|||||
#8429 | IE7, IE6 - Selection problem when destroying editor in ENTER_BR | Bug | Normal | General | ||
Description |
This issue was reported in our supprot channel (Topic: Excluding auto generated paragraph (<p>) tags from CKeditor)
Result: JS erro is thrown Issue has been reproducible in IE6 and IE7 from CKEditor 3.5.3 |
|||||
#8430 | Id attribute get lost when hit backspace | Bug | Normal | General | ||
Description |
Reproduced with internet explorer. Works fine in firefox. In source mode, inject this code : <div id="body"> <ul> <li> foo</li> </ul> </div> In wysiwyg mode, press enter after foo. Then press backspace, and go to source mode. The id attribute on the div is lost; Thanks in advance. |
|||||
#8431 | CKFinder thumbnail creation in sub-folders of a 2nd-level folder not working | Bug | Normal | File Browser | ||
Description |
If CKFinder is being used to browse an *existing* folder structure of images for the first time, and is therefore creating thumbnails on-the-fly whilst exploring the folders therein, it *won't* create thumbnails for images in sub-folders of a folder that contains no images (only sub-folders) itself. For example:
Images/folderX ..when you navigate into 'folderA' or 'folderB', thumbnails for 'imageA.gif' and/or 'imageB.gif' don't get created, seemingly because 'folderX' itself doesn't contain any images, only the sub-folders 'folderA' and 'folderB'. The same behaviour exhibits for further levels of folder nesting (e.g. in 'folderA' or 'folderB' had further sub-folders within them). As I mentioned already, this behaviour *only* occurs when exploring an existing nested folder structure of images and sub-folders for the first time with CKFinder. When folders are created or images uploaded by CKFinder itself, thumbnails are created as expected. Bug exhibits regardless of which browser is being used, tested on many! I'm using the PHP connector. When such a sub-folder is navigated to, the file browser sends a request to the connector for the thumbnail, but the response is always empty. This appears to be because the parent sub-folder doesn't exist within the thumbnails directory (as it hasn't been created, as 'folderX' has no images in). The connector back-end should cope with this scenario and recursively create the required sub-folders in the thumbnails directory if they don't exist. |
|||||
#8432 | IE8 openDialog('image') error | Bug | Normal | CKEditor 3.6.3 | UI : Dialogs | |
Description |
Hi I found a bug in the IE8 ckeditor when I called the following code: var oEditor = CKEDITOR.instancesblog.message?; oEditor.openDialog('image'); only in IE I get this error: When I add an image to my post User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; BTRS28621; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET4.0C) Timestamp: Wed, 28 Sep 2011 15:22:28 UTC Message: 'preview' is null or not an object Line: 8 Char: 1773 Code: 0 URI: http://.com/static/5.6.14/js/lib/ckedit ... ?t=ABLC4TW Message: Access is denied. Line: 120 Char: 2363 Code: 0 URI: http://.com/static/5.6.14/js/lib/ckeditor/ckeditor.js I found a small change that fixes it: Index: static-server/js/lib/ckeditor/_source/plugins/image/dialogs/image.js =================================================================== --- static-server/js/lib/ckeditor/_source/plugins/image/dialogs/image.js (revision 22060) +++ static-server/js/lib/ckeditor/_source/plugins/image/dialogs/image.js (working copy) @@ -281,7 +281,7 @@ var editor = this.getParentEditor(), sel = this.getParentEditor().getSelection(),
+ element = sel && sel.getSelectedElement(), link = element && element.getAscendant( 'a' ); Hide loader. |
|||||
#8433 | Revert #6417 to use new events in IE | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
The way that Microsoft implements some of the new behavior and standards is by using only the W3C event model, leaving the old "MS way" untouched. That means for example that in order to listen to a file drop we must use addEventListener, if we use attachEvent it won't work. The fix is just to revert #6417 where the order of setting the listener was changed to fix a problem with IE9 while it was in beta, but the final version doesn't have the bug so I think that we should try to use the W3C way first again |
|||||
#8434 | Image resize bug | Bug | Normal | Core : Selection | ||
Description |
Tested under IE8 with latest CKeditor (asp integration). When an image set to RTL (using the RTL icon), the resize handles appear reversed and resizing does'nt work currectly. |
|||||
#8435 | IE 7/8 Cannot get text selection for the first time | Bug | Normal | Core : Selection | ||
Description |
There is a bug in the latest CKEditor release (3.6.2), where CKEditor cannot obtain the text selection (either selected via 'doubleclick' or 'mouse drag from A to B') under IE (either 7 or 8, not sure about 9 and 10). I managed to recreate the issue here: http://staging.clients.webling.com.au/Wilfrid/ckeditor/_samples/mytemplate.html Select some text in the middle of the sentence, 'text' for example. Click on the yellow icon in the middle of the toolbars, it will open up an iframe dialog. Type in anything in the text box and click 'insert link'. If you debug the javascript, you'll see mySelection.getNative().createRange().text == "" If you undo the changes in CKEditor and try to insert the text again on the same word, the selection will work as normal. The following bug above applies to any text the user hasn't previously selected. The test case files can be downloaded in the link below: http://staging.clients.webling.com.au/Wilfrid/ckeditor_3.6.2_IE_Selection_Test_Case.zip |
|||||
#8436 | Redundant empty paragraph added after div elements | Bug | Normal | UI : Source View | ||
Description |
A redundant empty paragraph is added after div elements for no reason after switching out and back in to source view. Tested in 3.6.2 and confirmed on the latest nightly demo: http://nightly.ckeditor.com/7293/_samples/replacebyclass.html To reproduce, go to the editor, go to source mode, enter the following HTML: <p> </p> <p> some text</p> <div class="reply"> <p> test</p> </div> Perfectly valid HTML. Now exit source mode, and click on the first paragraph (with the space) and type something. Re-enter source mode and observe how the code changed to: <p> sdf</p> <p> some text</p> <div class="reply"> <p> test</p> </div> <p> </p> An empty paragraph has been added after the div, for no reason at all that I can think of. This is experienced on Mac OS X, running in the latest version of Chrome. Also confirmed in Firefox on Mac, and in Chrome on Ubuntu. This bug does NOT seem to be present in CKeditor version: 3.4.2 Possibly related to bug #3684, which has been marked as fixed though: http://dev.ckeditor.com/ticket/3684 |
|||||
#8437 | background of text run pasted from Word | Bug | Normal | Plugin : Paste from Word | ||
Description |
Situation: Pasting text from Word into CKEditor Problem: Background property of the text is set wrong Here is document source: <p> <strong> <span style="background:lime;"> <span style="color:white;"> <span style="font-size:36.0pt;">WORD</span> </span> </span> </strong> <strong> <span style="font-size:36.0pt;"> <span style="background:teal;"> <span style="color:white;">ABC</span> </span> </span> </strong> </p> CKEditor for some reason inverted hiearchy of <span> elements of the first word. In "word paste dialog" text is displayed correctly. |
|||||
#8438 | Webkit changes strong tags to b when deleting formatted text. | Bug | Normal | General | ||
Description |
Result: In elements path strong tag is changed to b. #9998 is the main ticket handling Webkit issues related to backspace. |
|||||
#8439 | Formatting is not removed on CRTL+A DELETE | Bug | Normal | General | ||
Description |
This ticked is based on part of #8410 ticket reported by @mrfr0g.
Result:
The same thing also applies to: The only exception from this rule are inline styles from Styles dropdown (E.g. Marker yellow.) which are removed on pressing Delete key in Webkit. |
|||||
#8440 | With BACKSPACE or DELETE keys, it is very hard or impossible to remove formatting left after deleting a text. | Bug | Normal | General | ||
Description |
This ticket is a continuation of #8439
In element's path: The same thing also applies to (formatting being left): Bold, underline, italic, strike, sub, sup, Font Size, Paragraph Format and Styles dropdown lists.
Suppose you want to remove the formatting (Switching to source and back works in all cases) :
IE: You can’t remove formatting using backspace or delete. You can remove it by pressing appropriate toolbar option or:
This time the formatting will be removed. Another issue with IE is that on double-delete IE removes formatting after Bold, underline, italic, strike, sub, sup but not after Font Size, Paragraph Format and Styles dropdown lists Webkit: You can’t remove formatting using backspace or delete. You can remove it by pressing appropriate toolbar option. There is also a special case with inline styles from Styles dropdown (E.g. Marker yellow.) which are removed on pressing Delete key in Webkit. |
|||||
#8442 | Block (i.e. not inline) <a> tags | New Feature | Normal | General | ||
Description |
With HTML5 anchor tags are now valid block elements e.g. The following is perfectly valid <a href=""> <img src="" alt="" /> <h1>Some Text</h1> </a> However, with CKEditor, the cleanup converts it to <a href=""><img src="" alt="" /></a> <a href=""><h1>Some Text</h1></a> I'm requesting that the requirement for <a> tags to be inline elements is removed |
|||||
#8443 | Styles List not displaying when used in Ajax Modal Popup | Bug | Normal | General | ||
Description |
When I use the ckeditor inside an ajax modal popup control, the 'Styles' List does not display. My initial thought is a z-index problem and the list is opening behind the modal popup window - however I could be wrong. If it is a z-index problem, can anyone advise me where I should update the CSS to fix this problem thanks in advance |
|||||
#8444 | FF - <a> tag href incorrectly encoded | Bug | Normal | General | ||
Description |
Run the attached code example. Click the "Test" button on the toolbar. Go to the source view. Notice that the "!" character is incorrectly encoded. Expected result is that the "!" character is not encoded, thus allowing navigation to the href to occur. |
|||||
#8447 | Conflicts with Graphviz | Bug | Normal | General | ||
Description |
If I activate the media wiki extension FCKeditor the graphs (rendered by Graphviz) are coruppted. Example
<graphviz border='frame' format='png'>
</graphviz>
<map name="ReleasePlanning---digraph+example1"></map> [[File:|This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.]]
<map name="ReleasePlanning---digraph+example1"></map> [[File:|This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.]] Because the CFEditor is started by default I'm unable to edit pages containing graphviz graphs, withouyt loosing the graphs.. |
|||||
#8449 | Inconsistent dimension units for images | Bug | Normal | General | ||
Description |
This ticket is based on forum post: http://cksource.com/forums/viewtopic.php?f=11&t=23683.
Result: <img alt="" src="http://192.168.1.100:8080/b.jpg" style="width: 1024px; height: 768px; border-width: 0pt; border-style: solid;" />
Result: <img alt="" src="http://192.168.1.100:8080/b.jpg" style="width: 1024px; height: 768px; border-width: 1px; border-style: solid;" /> border-width shows either 0pt or 1px. Those results are inconsistent. Reproducible from CKEditor 3.6.1 rev [6979] |
|||||
#8450 | Pasting a list with sublists only indents first sub-list (3.6.1 and up) | Bug | Normal | Core : Lists | ||
Description |
I attached a test document with a simple nested list. Please paste the list into a ckeditor field. Expected Results: Item 1 and Item 3 sublists should be indented. Actual Results: Only Item 1 sublist is indented. The behavior worked fine in 3.6. |
|||||
#8451 | Background-repeat: no-repeat - twice issue | Bug | Normal | General | ||
Description |
I've created mini content management system for workers of small company. This management system works with CKeditor. The ssmall group of users create new page with CKeditor (it's WYSWYG) and submit data into db. Now the problem is, there is a css issue. Take a look at this page http://smiths-heimann.az/?page=171 and here are the results
The result from Google Chrome 14
Opera 11 IE 9 and Firefox 7 How to fix that problem on Firefox? There are hundreds of page with this problem in mysql db table. Is there anyway to find and fix wrong css code in db table with php function? How to fix this error in CKEdior 3.6? |
|||||
#8452 | Copy and Cut toolbar actions disabled in Chorme | Bug | Normal | UI : Toolbar | ||
Description |
I don't know if it is a bug or a security restriction in Chrome - but the copy and the cut buttons are disabled in the toolbar in my version of Chrome (v14) - I am using CKEditor 3.6.2. No dialog shows up urging me to use CTRL+X/V... |
|||||
#8454 | Caret in wrong position after line break in opera | Bug | Normal | Core : Keystrokes | ||
Description |
Note a small caret appear at the left-top of the editor. Any text typed, does move the caret to the proper place. |
|||||
#8455 | mousedown focus is too agressive | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
|
|||||
#8456 | blinking cursor causes null pointer | Bug | Normal | General | ||
Description |
I have received some errors from the wysiwygarea plugin.js line 1182 in CKEditor version 3.6.2. It is were editor.document.$.designMode is set to 'off'. At this place the at setTimeout function has been called with a delay of 50 ms. The problem is that editor.document in the meantime has been set to null. So the following code from the plugin fails: editor.document.$.designMode = 'on'; setTimeout( function() { editor.document.$.designMode = 'off'; if ( CKEDITOR.currentInstance == editor ) editor.document.getBody().focus(); }, 50 ); My suggestion is to insert a check for editor.document inside the setTimeout function: editor.document.$.designMode = 'on'; setTimeout( function() { if ( editor.document ) { editor.document.$.designMode = 'off'; if ( CKEDITOR.currentInstance == editor ) editor.document.getBody().focus(); } }, 50 ); |
|||||
#8457 | Unable to click left of an indented image. | Bug | Normal | General | ||
Description |
Verified this in IE9 (at the least).
Note that it is not possible to get cursor to move without using the arrow key. Why this workaround is usable, users expect to be able to use their mouse to maneuver the caret. |
|||||
#8459 | cursor behavior is strange during undo | Bug | Normal | CKEditor 3.6.3 | Core : Undo & Redo | |
Description |
how to reproduce: 1.create several lines in ckeditor, with any text in each line. 2.click undo button the change will be undo one by one, but the cursor seems move up and down meaningless between 2 lines when clicking the undo button. |
|||||
#8460 | Integrate file browser to Skydrive or Amazon or other Cloud storage services | New Feature | Normal | File Browser | ||
Description |
Today when using file browser it can only show local services. It can be nice to have option to connect to Cloud Storages like SkyDrive or Amazon and use files from there. |
|||||
#8461 | Paste image from clipboard | New Feature | Normal | General | ||
Description |
I just made a comment on http://dev.ckeditor.com/ticket/2658, requesting you reconsider this wontfix. Please... I just tested this in Gmail and it works to paste images in their e-mail composer now, both for Firefox and Chrome, unfortunately not for IE9. Also Atlassian Jira has a way to handle this with a small java application. I think you should reconsider this ticket, as it is becomming more and more common to capture screenshots and paste directly in any publishing tools, and it is very handy not to have to go via save. |
|||||
#8463 | WebKit: Cut/Copy don't go on "enabled" state | Bug | Normal | CKEditor 3.6.4 | UI : Toolbar | |
Description |
Original message from our contact form, Ticket REF : 3815-QDFX-1500. I found that 'cut' and 'copy' icons do not go to enabled state after you select text in editor (chrome v. 14.0.835.202 m windows). After exploring this I found that there is a problem with queryCommandEnabled function in clipboard plugin, so I propose a solution to you. function stateFromNamedCommand( command, editor ) { // IE Bug: queryCommandEnabled('paste') fires also 'beforepaste(copy/cut)', // guard to distinguish from the ordinary sources( either // keyboard paste or execCommand ) (#4874). CKEDITOR.env.ie && ( depressBeforeEvent = 1 ); var retval = CKEDITOR.TRISTATE_OFF; try {retval = editor.document.$.queryCommandEnabled( command ) || CKEDITOR.env.webkit && editor.getSelection().getRanges()[0].startOffset != editor.getSelection().getRanges()[0].endOffset ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED;}catch( er ){} depressBeforeEvent = 0; return retval; } |
|||||
#8464 | Choose background color of table does not close dialog in IE | Bug | Normal | Core : Tables | ||
Description |
From : http://cksource.com/forums/viewtopic.php?p=60688#p60688 On IE8 and IE9 with CKEditor 3.6.2, we find that we can select multiple cells by selecting the first cell, then shift-click in the last cell (say in a row -- also dragging across rows seems to select them too). If we right click to set the cell properties, it sometimes only ends up selecting the last cell. But when we are able to select the entire row and choose to set the background color, we get the following JS error: Line: 51 Error: Object doesn't support property or method 'data' SCRIPT438: Object doesn't support property or method 'data' ckeditor.js, line 51 character 1842 and it highlights this: if(A.data('cke-display-name')) At that point, the cell properties dialog will not close on OK button, but will if you click CANCEL button (then OK on a dialog about "some options have changed". The cells actually seem to show the new background color like it was successful. This can be reproduced easily using your stock demo. |
|||||
#8465 | Cursor jumping during undo | Bug | Normal | General | ||
Description |
This issue is similar to the #8459 which is also an undo regression. To reproduce:
4 Press undo 5 times Result: Cursor jumps up and down and after 5th undo there is still a gap. Issue has been reproducible from CKEditro 3.6.2 rev [7229] |
|||||
#8468 | ckFinder integration, clicking the image server button opens blank page first | Bug | Normal | General | ||
Description |
Issue affects Firefox (my version is 7.01, my OS is Vista SP2) does not affect Chrome or IE8. When I click the Browse Server button, a new window opens with about:blank in the address bar. When I close this window another window opens with the correct ckFinder page. It could be a security setting, but I can't find any security setting in the Firefox Options dialog. I have reproduced this error at the ckEditor demo page. |
|||||
#8472 | Image plugin bug | Bug | Normal | UI : Dialogs | ||
Description |
There's a Bug in the Image plugin, that when you click ok/close on the dialog box, JS dose a removeAttribute on the SRC of the img tag of preview image, and when this happens, in Chrome it try's to load base URL as a image. To fix it, all that need to happen is have it load just load a blank image or a invalid url or something. In Chrome if you open up the console, it will show the error. Thanks, Winston |
|||||
#8474 | When I copy an image from MS-Word Image is not displaying | Bug | Normal | Plugin : Paste from Word | ||
Description |
When I copy a content from Microsoft Word containing both images and content(CTRL+A and CRTL+C) and paste it in the ck editor only the content is displaying in ck editor. Can anyone help me With Regards, Janarthanan.S |
|||||
#8475 | Problems with deleting font tags in table. | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
Results: IE - works fine Issue has been reproducible from CKEditor 3.6.2 rev [7243] |
|||||
#8477 | Complete translation for French language (fr.js) | New Feature | Normal | UI : Language | ||
Description |
Here is my completed translation of the French main language file for CKeditor. It was just integrated in the new release of The CMS Guppy 4.6.17. And I wanted to propose a langage pack completely translated. I hesitated a little about the translation of "tuples" on line 126, for I am no coder. Generally, it stays untranslated in French text. But When it is translated, we find sometimes "multiplet". But I choose to translate with the expression "couples de valeur". Can you tell me how I can compress the file in order to include it in a language pack for Guppy ? I remember I did it once for FCKeditor,but I found no information about it for CK and it may be complicated for me. Or perhaps you could compress it for me ? Are there any other language file in Ckeditor that would need localization, for instance in plugins ? Best regards from Katryne Chauvigné-Bourlaud |
|||||
#8478 | Complete translation for French language (fr.js) | New Feature | Normal | UI : Language | ||
Description |
Here is my completed translation of the French main language file for CKeditor. It was just integrated in the new release of The CMS Guppy 4.6.17. And I wanted to propose a langage pack completely translated. I hesitated a little about the translation of "tuples" on line 126, for I am no coder. Generally, it stays untranslated in French text. But When it is translated, we find sometimes "multiplet". But I choose to translate with the expression "couples de valeur". Can you tell me how I can compress the file in order to include it in a language pack for Guppy ? I remember I did it once for FCKeditor,but I found no information about it for CK and it may be complicated for me. Or perhaps you could compress it for me ? Are there any other language file in Ckeditor that would need localization, for instance in plugins ? Best regards from Katryne Chauvigné-Bourlaud |
|||||
#8479 | Performance problem with nested documents | Bug | Normal | General | ||
Description |
This is the same issue as in ticket #8246 which has been closed as fixed. However we can still reproduce the problem. Please either track this issue here going forward or re-open the original ticket. To reproduce, paste the content in the attached html file into the editor in source mode and then switch back to wysiwyg mode.
IE6 throws a stack overflow error
IE 7 and IE 8 become completely unresponsive. IE 9 is a little slow to respond after the paste but it does eventually respond to user input. |
|||||
#8480 | Dropdown menu's for Styles, Format, Font and Size not working correctly in IE8 | Bug | Normal | General | ||
Description |
Hello CKEditor is integrated in my company's CMS. Since then i also integrated it in my own websites and i still love it. I myself don't work with IE but a college of mine came with the following, which i tested in our CMS, with latest release version (http://ckeditor.com/demo) and the Nightly version:
The first time the page gives you a reload or a long loading activity
|
|||||
#8483 | Issue with bullets | New Feature | Normal | General | ||
Description |
When adding bullets and select Heading 4, it is not written in an inline style sheet. It is better if it can be implemented with inline styles. |
|||||
#8484 | New, updated Faroese Locale | New Feature | Normal | UI : Language | ||
#8486 | In Mozilla 5.0(Mac), Font styling options are not working. | Bug | Normal | General | ||
Description |
We are using CKEditor 3.5.1 (revision 6398).Font styling options like styles, format, font, size, font colorings are not working in Mozilla 5.0 on MAC. |
|||||
#8487 | Editor starts to be disabled when moved to another DOM element | Bug | Normal | General | ||
Description |
When initialized editor instance is moved within document to another element, editor starts to be disabled (typing is not possible anymore) and value is completely lost. Example HTML page is attached. |
|||||
#8488 | fckeditor in java on linux server having problem while image uploading | Task | Normal | Server : Java | ||
Description |
I have download fckeditor in java and deploy it on linux server. And getting problem while uploading image. when i browse a image file and click on to send to server button. Then images is uploading process. Same thing i deploy on window machine then it work good. but i want to deploy it on linux machine. please guide me which thing i miss to configure fckeditor for linux machine |
|||||
#8489 | manually adding an <address> tag is removed by ckeditor | Bug | Normal | General | ||
Description |
simple as the title says, i tried manuall adding <address> tag inside a content box, while is source code view. when switching back to regular view and again to source, the tag dissapears. |
|||||
#8491 | Ckeditor & Geogebra | New Feature | Normal | Server : PHP | ||
Description |
Hi Thank U very much for your so useful software "ckeditor" I encountered a difficulty while using the said software. I would like to simply insert a geogebra applet into CKEditor with a custom button the Geogebra geometry program available from http://www.geogebra.org. This is an Open Source geometry program written in Java which is written to be cross-platform compatible (although the install script varies per platform). for example like this site that insert equation editor into CKEditor with a custom button http://www.codecogs.com/latex/integration/ckeditor/install.php please guide me thanks a lot |
|||||
#8492 | Can't move cursor behind non-editable element (or placeholder) in CKEditor | Bug | Normal | General | ||
Description |
To reproduce:
Results:
FF - you can't. You can however workaround this with up/down arrows or Home/End buttons
IE8 - You can't move cursor behind
Opera - the line with
Chrome - Works but you can't see the cursor after you click behind Currently the only way to workaround the issue is to use code like: <p> <span contenteditable="false" unselectable="on">[[UMR]]</span><span> </span></p> |
|||||
#8493 | [IE] : Can't add link to selected text | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
In IE from CKEditor 3.6.2 it has been impossible to change selected text into link (Link is added next to text). Steps to reproduce:
Expected result:
Actual result: NOTE:If you undo (CTRL-Z) after step 8, and repeat step 5 t/m 8, the link is created as expected. So it seems to be a problem only the first time. Issue has been reproducible in IE browsers from CKEditor 3.6.2 rev [7243]. |
|||||
#8494 | Complete translation to esperanto of main language file | New Feature | Normal | UI : Language | ||
Description |
Hello My friend Jean-Mary Simonet sent me a complete translation of the main CKEditor language file. I want to include it in the language files pack that I build for CMS GuppY. These packs include both php and js files. There is one pack per language and I propose them for download at my website http://guppystory.org/. Until the last release of the Guppy, my packs included only js language files for FCKeditor and they were not compressed. Now, with CKEditor, it is more complicated, and I would welcome some directions to compress the language files and include them in my packs. That is the very question I already asked in the other ticket #8477 about the French language file. Sorry for double posting. As attachment, you will find the Esperanto main language file for CKeditor. Cordially Katryne |
|||||
#8495 | Textarea disappears when switching to source in IE 8/9 | Bug | Normal | UI : Source View | ||
Description |
When switching to 'Source' the textarea disappears. This is caused by the following code in /plugins/sourcearea/plugin.js:66: textarea.hide(); textarea.setStyle( 'height', holderElement.$.clientHeight + 'px' ); Because of the hiding of the textarea the height of the holderElement.$ is reduced to 0 and so the textarea becomes invissible. I can't find a reason why this height would not be initialized BEFORE hiding the textarea, it it possible to do so? var clientHeight = holderElement.$.clientHeight; textarea.hide(); textarea.setStyle( 'height', clientHeight + 'px' ); We are using the ckeditor in an 'absolute positioned environment', which is working fine, but on a rare occasion needs some adjustment which we put in a separate file. Since this will only be for the better of the ckeditor itself and won't effect any existing behaviour in other browsers it would be nice to have it fixed this way. Tested on the nighlty build as well. |
|||||
#8496 | Cannot break bulleted item out of list | Bug | Normal | General | ||
Description |
If you have a list of three items, and place your cursor at the start of the second item and press enter, I would expect the content to split in to a list, paragraph and list. Instead additional bullets are created giving no way of breaking an item out of the list. Steps to reproduce:
Expected behavior: The list would split in to three elements, a list on top, a paragraph in the center, and a list on the bottom. Actual behavior: Additional bullets are created. In Chrome/FF (Latest) pressing backspace will bring the item to the end of the previous item. In IE, pressing backspace will break the item out of the list. |
|||||
#8497 | ie 7 scrollbar positioning problem | Bug | Normal | General | ||
Description |
I have seen this issue reported online, but none of the solutions people mentioned have worked for me so far. I have ckeditor (current version) integrated into a site, and when users with ie7 or lower hit a form where the content is long enough to cause the frame to scroll, the scrollbar goes out of position to the middle of the frame and there is no way to get down to the bottom of the editing area (see screen shot here: http://personalcto.redirectme.net:8088/ckeditor_ie7_issue.png) I saw the same thing reported in places like this: http://theholyjava.wordpress.com/2011/03/31/ckeditor-scroll-dialogs-with-page/, but I was not clear on how to implement the solution mentioned there. Other pages talked about setting the div enclosing the text area to be position: relative, which I have tried but without success. I only just switched this site from fckeditor to ckeditor because of another IE issue that was not solvable in fckeditor. I have asked if the user can upgrade IE or install another browser for the time being, but I do need to be able to support IE7 for this type of thing. Could anyone suggest what else I might try? Thanks, Barry |
|||||
#8499 | Safari : List/Link properties not updated when cursor kept at end of list item or link inside table cell and modified properties | Bug | Normal | General | ||
Description |
To reproduce the defect: Scenario 1:
Expected Result: URL for the link changed to www.google.ie Actual Result: URL for the link not changed. Scenario 2
Expected Result: Style for Numbered/Bulleted List changed Actual Result: Style for Numbered/Bulleted list not changed. |
|||||
#8500 | No indentation when copy/paste plain text | Bug | Normal | Core : Pasting | ||
Description |
When copy/paste plain text with indentation from f.e. notepad into the ckeditor via CTRL-V the indentation is not copied along in Internet Explorer (and very little in chrome). In Firefox it works well. No Paste window pops up in both cases. When pasting via the button "Paste as plain text" a little indentation is shown, but very little. In IE a Windows popup asks to give permission to access the clibboard. In either cases (when answering no, a CKEDITOR Paste popup shows) 3 spaces ( ) would be generated, in FF that would be 9 (Paste window pops up). No matter the value of 'config.forcePasteAsPlainText'. Is it possible to have the same indentation as in FF? |
|||||
#8501 | If you use "Paste from word" when pasting text it looses color formatting | Bug | Normal | Plugin : Paste from Word | ||
Description |
If you have a text in OpenOffice.Write or Microsoft Word that has color formatting and copy this into the CKEditor using the "copy from word" button, the color formatting is lost. Other formats like italic, bold are kept.
I also tested this in the nightly build, and the same happened there. |
|||||
#8503 | FF: Not possible to add paragraph before table if table is first element in editor | Bug | Normal | General | ||
Description |
To reproduce the defect: Open Ajax sample and insert a Table. Keep cursor in first table cell and press left Arrow key couple of times. Expected Result: A new empty Paragraph created above the table. Actual Result: Cursor stays in the table no matter how many times and how quickly we press left arrow key. Tried in FF7.0 |
|||||
#8504 | Remove the 'Advanced' tab from the 'Image' dialog | Bug | Normal | General | ||
Description |
The folowing code use to work until i upgraded to 3.6.2 We like to hide Advanced/useless tabs from our users in the config.js the following code causes the dialog to freeze when adding a new link if (dialogName == 'image') { Remove the 'Advanced' tab from the 'Link' dialog. dialogDefinition.removeContents('advanced'); } |
|||||
#8505 | Remove the 'Advanced' tab from the 'table' dialog | Bug | Normal | General | ||
Description |
The folowing code use to work until i upgraded to 3.6.2 We like to hide Advanced/useless tabs from our users in the config.js the following code causes the dialog to freeze when adding a new linktable
|
|||||
#8506 | French translation of CKeditor plugins | New Feature | Normal | UI : Language | ||
Description |
You will find here as attachment a zipfile including the french translation for the 5 plugins that have a lang folder. |
|||||
#8508 | Mac/Firefox 7: Pressing "Delete" in tables does not delete selection | Bug | Normal | Core : Keystrokes | ||
Description |
Steps to reproduce:
Expect: Selected text is deleted. Actual: The character before the highlight block is deleted instead, as if no selection was in effect. |
|||||
#8509 | Table height gets copied from width when there is no advanced tab. | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
Result: Issue has been reproducible from CKEditor 3.6.1 rev [6979] |
|||||
#8510 | IE 7 Editor scrolling when clicking near the scrollbar | Bug | Normal | General | ||
Description |
This is a customer reported issue. To reproduce:
Result: The body scrolls to the top of the document Expected Result: No scrolling, e.g as in IE8 |
|||||
#8511 | Focus not going back to Table dialog after clicking ok button on error dialog | Bug | Normal | General | ||
Description |
To reproduce the defect
Expected Result: Alert dialog closes and focus goes back to Rows field on Table Properties dialog. Actual Result: Alert dialog closes but a table inserted with Zero Rows & Columns |
|||||
#8512 | Opera: Tabbing inside tables not working properly | Bug | Normal | General | ||
Description |
To reproduce the defect:
Expected Result: Cursor keeps moving from one table cell to another table cell and when it reaches last table cell it inserts a new row. Actual Result: Focus keeps toggling between next table cell and the buttons before or after Editor body. |
|||||
#8513 | Unordered list formatting inconsistencies - WYSIWYG in IE8 | Bug | Normal | UI : Toolbar | ||
Description |
In the WYSIWYG editor in IE8, an unordered list appears formatted correctly -- indented with regular bullets -- until it is saved. After it is saved, it displays without indentation, and with circles instead of bullets. |
|||||
#8514 | Chrome Paste Bug with multiple lines | Bug | Normal | Core : Pasting | ||
Description |
Copy HTML text that has multiple lines (code has <br /> or </p> boundaries) Paste directly into editor and only the first line is pasted. Using the paste dialogue pop-up allows the correct code to be inserted. |
|||||
#8515 | Opera, highlight text, click style button and cursor position incorrect | Bug | Normal | General | ||
Description |
To reproduce: Type some text into the editor on one line. Highlight the last few characters and click the Bold button
Highlight the bolded text and click the Bold button to remove the style
|
|||||
#8519 | FF7: Color Picker shows last color(s) selected on open | Bug | Normal | General | ||
Description |
We have found that in FF,7 for the text selection made, Color Picker shows last color(s) selected on dialog open. Steps to reproduce:
highlighted, when the default color is black. Select 'green'
highlighted. You can continue to select other colors, and eventually can get every color to be highlighted. |
|||||
#8520 | IE8 Paste throws errors in <br> mode | Bug | Normal | Core : Pasting | ||
Description |
Note the javascript error that is thrown. The issue seems to happen with any paste action when text is highlighted. Note that this does not happen in IE8 mode of IE9. Only native IE8 is afflicted. |
|||||
#8523 | Changing colors not working with XHTML compliant code | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
It is not possible to change the color twice, when using CKEditor in XHTML compliant mode. The bug can easily be reproduced on the demo site: http://nightly.ckeditor.com/7310/_samples/output_xhtml.html Mark a word. Choose the blue color, which will work. Choosing a second color without unmarking the word will fail. This also makes it impossible to remove a chosen color. |
|||||
#8524 | Autogrow on startup doesnt work with two editor instances | Bug | Normal | General | ||
Description |
The autogrow plugin works with multiple editor instances. However the autogrow on startup (config.autoGrow_onStartup = true) only works on the first editor. The size of the second editor will be effected by the first editor. The bug can be reproduced by setting up a page with two editors and autogrow enabled without a max and a min height. |
|||||
#8527 | IE: Trying to insert a table after inserting an anchor generating error | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
To reproduce the defect:
Expected Result: Table dialog closed and table inserted before the anchor. Actual Result: Table dialog not closed but a table inserted and it replaces the anchor. when you look at status bar we are seeing an error and the error is " 'type' is null or not an object" |
|||||
#8528 | Remove unused imagePreviewBoxId in image dialog | Bug | Normal | CKEditor 3.6.3 | UI : Dialogs | |
Description |
The preview box has a unique id that it isn't used and it isn't available as part of any API because it's locked inside a closure, so I think that it can be safely removed. |
|||||
#8529 | Table Dialog with multi ckeditors crash | Bug | Normal | Core : Tables | ||
Description |
Then the page lost focus still frozen and css style and the table dialog box sometimes are lost. |
|||||
#8530 | jQuery adapter breaks save button | Bug | Normal | General | ||
Description |
When using the jQuery adapter's .ckeditor() function, the save buttons of editors created in that way are broken. The button seems to work correctly, but the text that is submitted is whatever text was in the textarea before it was replaced by an editor. A workaround is to do CKEDITOR.replace($(element).attr('id'), opts) but that kindof defeats the whole purpose of the jQuery adapter. |
|||||
#8531 | No hack needed on tables | Task | Normal | General | ||
Description |
The trick we use on empty tables to show them is not needed. It can be solved by adding the following CSS to the editing area: table { empty-cells: show; } Not tested though. Source: Show empty cells in data tables with empty-cells: show. |
|||||
#8534 | #7243 bug again | Bug | Normal | General | ||
Description |
Hi all, unfortunatelly #7243 does not fix the bug. Problem: <p> <a href="http://xy.eu/downloads/1.pdf" onClick="javascript: pageTracker._trackPageview('/downloads/1.pdf'); ><img alt="" height="210" src="http://mihalko.eu/image/data/slider/ctm_t.jpg" width="400" /><br /> </a></p> Becomes: <p>
In demo and in the latest version too. I am using Mac Os X Leopard Firefox/Safari |