Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4501 - 4600 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#4750 OK & Cancel buttons in dialog doesn't follow the OS guidelines Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.3 Accessibility
Description

I don't know the order in Linux, but in Windows the order of buttons is OK - Cancel, like CKEditor does right now, but in Mac it's the revere: Cancel - OK

This is defined in the defaultDialogDefinition private object of the dialog plugin, but it's impossible to change it from a plugin, just changing the definition to

	var defaultDialogDefinition =
	{
		resizable : CKEDITOR.DIALOG_RESIZE_NONE,
		minWidth : 600,
		minHeight : 400,
		buttons : CKEDITOR.env.mac ? [ CKEDITOR.dialog.cancelButton, CKEDITOR.dialog.okButton ] : [ CKEDITOR.dialog.okButton, CKEDITOR.dialog.cancelButton ]
	};

is enough.

#4752 FCKeditor floating dialogs Task Normal UI : Dialogs
Description

I have an issue that i have not been able to find an answer to. I have fckeditor integrated into cutenews. It resides in a iframe that has a set hight. The issue im having is this.

When i click on any button in fckeditor that brings up a floating dialog box (ex:image), the dialog box shows in the middle of the iframe. This position is well below the editing area and causes people to scroll up the page to get back to the editing area after they a finished with the dialog box. Is there a way to bypass the automatic position calculation fckeditor uses, or a way to set where the dialog boxes appear?

If its possible to just set the floating dialog boxes to appear at the top of the iframe (frmMain) that is generated by fckeditor, that would be best. Thanks in advance if anyone can help.

Thanks

#4753 User passwords Bug Normal Project : MediaWiki+FCKeditor
Description

Hi We are using your mediawiki software in our organisation. Recently we got an issue like one of our user has forgot his/her password. As an admin of the system i coulndt find a way to change the userpassword. Can any one help me in this regard.

Thankyou, SFSU

#4754 Context menu is not showing when editor is destroyed and recreated Bug Normal UI : Context Menu
Description

First of all sorry for my bad english.

Here are steps which should recreate this bug:

  1. create editor with replace method on textArea element
  2. click right mouse button to open context menu
  3. destroy editor
  4. recreate editor with replace method on the same textArea element
  5. click right mouse button to open context menu (context menu is not showing anymore)

Firefox 3.5.1 reports an error this.$ is undefined in ckeditor.js

#4755 CKeditor causes javascript error on IE Bug Normal General
Description

Hello,

I am using CKEditor on jsp page.

My config.js:

CKEDITOR.editorConfig = function( config )
{	
    config.toolbar = 'SimpleToolbar';	
    config.resize_enabled = false;
    config.toolbar_SimpleToolbar =
    [
        ['NewPage','Preview','-','Print', 'SpellChecker', 'Scayt','-','Undo','Redo'],
        ['/'],
        ['Bold','Italic','Underline','Strike'],
        ['NumberedList','BulletedList'],
        ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
        ['Link','Unlink'],
        ['/'],
        ['Table','HorizontalRule','SpecialChar'],
        ['TextColor','BGColor'],
        ['Maximize', 'ShowBlocks']
    ];	
};

Everything is fine until I try to open the page on IE, it will cause JavaScript error "in line 22. error thrown and can't be caught"

What should I check?

#4756 IE7: hover over button does not show tooltip Bug Normal General
Description

When i mouse over a button in CKeditor in IE7, tooltip does not show. Work fine with IE8 and IE6. I am using CKeditor 3.0.1

#4757 typo in documentation Bug Normal General
Description

I think there is a typo in the following code (this page: http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_%28Uploader%29) :

Example 1

CKEDITOR.replace( 'editor1', {

filebrowserBrowseUrl : '/browser/browse.php', filebrowserUploadUrl : '/uploader/upload.php',

});

There's an extra comma at the end of the second parameter.

#4759 Update of the swedish language file Bug Normal FCKeditor 2.6.6 UI : Language
Description

Hi, I have updated all the missing texts in the swedish translation file,

Regards Peter Grape

#4761 IE8 scrollbar position is reset on unfocus in code view Garry Yao Bug Normal CKEditor 3.2 UI : Toolbar
Description

Hi,

When looking at code view in an editor instance in IE8, the scrollbar will be reset to the top of the text when clicking outside of the editor.

(You'll have scroll a bit down to reproduce the problem.)

#4762 Buggy scrollbar in source view IE8 Garry Yao Bug Normal CKEditor 3.2 UI : Toolbar
Description

This is the weirdest bug i've seen in a while:

In an editor instance in Internet Explorer 8, with compatibility mode disabled, when looking at 'code view' and with some :hover declaration declaren anyware in the page (that contains the editor), the scrollbar of the editor starts 'blinking' and scrolling up when hovering over and out the textarea.

The :hover declaration is the containing page could be something like

<style type="text/css">
   somethingthatisnotA:hover { color: #ABC; }
</style>

and that declaration has nothing to do with the editor at all! To reproduce this problem, please try the following

#4763 Invalid behavior when pressing enter on selected text Garry Yao Bug Normal CKEditor 3.2 General
Description

I managed to confirm this on FF 3.5.5. I cannot reproduce it on IE8. It happens only when <br /> is at the end of line (regardless of enterMode).

Steps to reproduce

Paste the following text in soruce mode:

TEST1&nbsp;&nbsp;&nbsp; TESTESTTEST T1<br />
TEST2&nbsp;&nbsp;&nbsp; TESTESTTEST T2<br />
TEST3&nbsp;&nbsp;&nbsp; TESTESTTEST T3<br />
  • switch to WYSIWYG mode
  • put the cursor after TEST2
  • press shift-end, to select everything until the end of the line
  • then, press enter
  • the content suddenly looks like this :
TEST1    TESTESTTEST T1
TEST2
    TESTESTTEST T2
TEST3    TESTESTTEST T3

Where you would expect it to be something like :

TEST1    TESTESTTEST T1
TEST2

TEST3    TESTESTTEST T3
#4764 Exception message in .appendTo() always shows null Garry Yao Bug Normal CKEditor 3.1 General
Description

If the CKEDITOR.appendTo() method is called with an invalid id the exception generated will always show "[CKEDITOR.editor.appendTo] The element with id "null" was not found" instead of the proper id.

This code fixes it (still searching for proper SVN cliente for Mac):

	CKEDITOR.editor.appendTo = function( elementOrId, config )
	{
		var element = elementOrId;
		if ( typeof element != 'object' )
		{
			element = document.getElementById( elementOrId );

			if ( !element )
				throw '[CKEDITOR.editor.appendTo] The element with id "' + elementOrId + '" was not found.';
		}

		// Create the editor instance.
		return new CKEDITOR.editor( config, element, CKEDITOR.ELEMENT_MODE_APPENDTO );
	};

#4765 FCKeditor + ColdFusion - potential function name clash Wiktor Walc New Feature Normal General
Description

In ColdFusion there are already functions like:

  • FileCopy
  • FileDelete
  • FileExists
  • FileMove
  • FileOpen
  • ...

it is a matter of time when another FileXYZ functions will be added. In FCKeditor built-in file manager we're using "FileUpload" as a name for one function. It should be renamed to something that will definitely not interfere with other existing names.

#4766 ckeditor 3.01 ver,in source model,enter backspace ,js error Bug Normal UI : Source View
Description

3.01 verson,in source model,enter backspace ,js error,not delete any words

ie8

#4767 CKEditor does not work when ckeditor_source.js is loaded in the <body> tag Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 General
Description

When

<script type="text/javascript" src="ckeditor_source.js"></script>

is placed inside of the <body> tag, CKEditor doesn't load (tested on FF 3.5.5, IE8, Opera 10.. probably doesn't work in every browser).

Error in Firefox:

CKEDITOR.env is undefined
http://example.com/ckeditor_31/_source/core/loader.js
Line 165
#4768 IE: Context menu throws js error Garry Yao Bug Normal CKEditor 3.1 UI : Context Menu
Description

When loading the editor sample and right-clicking directly in the editor are without putting the editor focus first, a js error is thrown.

It happens also when right-clicking the white area after the editor contents, even after placing the cursor inside the text.

#4769 config.fullPage doesn't work Bug Normal General
Description

I'm trying to enable the full page but it doesn't work.

CKEDITOR.replace("html", {"fullPage":true});

Editor source always strip <html> <head> <body>.

#4771 Text size changes even if font size remains same Bug Normal Core : Styles
Description
  1. Go to nightly build

http://nightly.ckeditor.com/4675/_samples/skins.html

  1. Type something
  1. select any style like 'heading'
  1. change the font size to let's say 10
  1. Do it again. That is change the font size to 10 again. Basically select the previous size from drop down.

Now notice, even though I've selected the same font size, it actually gets bigger

#4772 Links remain default color when painting with 'text-color' Garry Yao Bug Normal CKEditor 3.2 Core : Styles
Description

To Reproduce:

  1. open the online demo or a nightly build sample.
  2. Select a sentence that contains a link and paint it in another color.
  3. notice that the sentence was painted but the link wasn't.

-repeat the reproduction, just instead of a full sentence, select just a link.

this is the normal behavior of the browser, but when the end-user paints a link he expects it to be painted. to fix this issue, the styled span should go inside the A tag and not out of it.

#4773 fileBrowser plugin overwrites any onClick function for a fileButton element Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 UI : Dialogs
Description

The fileBrowser plugin applies its own "fileUpload" function to the onClick handler of the fileButtons, without any regards to any such handler specified in the definition of the object.

Unfortunately, the big anonymous function makes quite hard to workaround this or other improvements from a plugin.

The solution here is to change

if ( url )
{					
	element.onClick = uploadFile ;
	element.filebrowser.url = url;
...

to a wrapper that includes the previous handler:

if ( url )
{					
	var onClick = element.onClick;
	element.onClick = function( evt )
	{
		// "element" here means the definition object, so we need to find the correct
		// button to scope the event call
		var sender = evt.sender
		if ( onClick && onClick.call( sender, evt ) === false )
			return false;
		return uploadFile.call( sender, evt );
	};

	element.filebrowser.url = url;
...
#4775 Unexpected page scroll in source mode in IE8 Bug Normal CKEditor 3.1 General
Description

Environment

WinXP, IE8 Browser Mode, IE8 Document Mode

Reproducing Procedures

  1. Open one of the sample pages, load the editor with longer text that could overflow the textarea in source mode.
  2. In 'Source' mode scroll the page to the bottom.
  3. Mouse over the toolbar space.
  • Actual Result: Scroll bar is moving top and down.
#4776 Preview page fails to open with relative URL on link in IE Garry Yao Bug Normal CKEditor 3.1 General
Description

Environment

WinXP, IE8 Standards Mode.

Reproducing Procedures

  1. Open 'replacebyclass' sample pages, click on 'CKEditor' to open link dialog.
  2. Update the URL field with '../images/logo.gif' and click 'OK'.
  3. Click on 'Preview' button.
  • Actual Result: JavaScript error thrown.
#4777 Toolbar layout incorrect in IE7 Bug Normal CKEditor 3.1 UI : Toolbar
Description

Toolbar bottom height is eaten up on 3.1.x branch as in the attached screenshot.

#4778 Undo icon does not get enabled on click of Paste Bug Normal CKEditor 3.3 Core : Undo & Redo
Description

I am using FCKeditor version 2.4.2. On pasting data in editable area using Paste icon, the Undo icon does not gets enabled. Undo is getting enabled on all other actions except paste. Please guide me what and where the code needs to be changes for enabling Undo on click of Paste.

Regards Babita

#4779 Setting CKEditor width should automatically adjust resize_minWidth Garry Yao New Feature Normal CKEditor 3.4 UI : Toolbar
Description

same applies for editor height.

Consider the following scenario: page with a column having fixed width 540px and padding 20px. Developer sets CKEditor width to 500px.

Now user entering text in CKEditor wants to change editor's height. What will happen? CKEditor will automatically resize to 750px (default resize_minWidth is 750px).

Instead of forcing developers to look for resize_minWidth and setting it to lower value than width, I think we should change resize_minWidth to width automatically if width has been set and is lower than resize_minWidth.

#4780 Unable to apply inline style without text selection on IE8 Bug Normal Core : Styles
Description

I see the same bug with webkit described at #1272 in IE8 Standards mode also.

#4781 Insert any template content start with html table result in empty paragraph Frederico Caldeira Knabben Bug Normal CKEditor 3.1 General
Description

Reproducing Procedures

  1. Open 'replacebyclass' sample pages, open 'Templates' dialog.
  2. Make sure 'Replace actual contents' is checked and click on 'Strange Template' to insert it.
#4782 Inconsistent context menu item height in IE Quirks Bug Normal UI : Context Menu
Description

Environment

WinXP, IE8 Quirks Mode.

Reproducing Procedures

  1. Open 'replacebyclass' sample page.
  2. Right click on the 'CKEditor' link to open context menu.
  3. Press 'Down' arrow key to select the menu item.
  • Actual Result: The height of selection mark background is shorter than the item.
#4783 Page break for print cause horizontal scrollbar in IE quirks brooks Bug Normal CKEditor 3.3 General
Description

Environment

WinXP, IE quirks.

Reproducing Procedures

  1. Open 'replacebyclass' sample page.
  2. Press several 'Enter' key until page overflows vertically.
  3. Insert a 'Page Break for Print'.
  • Actual Result: The horizontal scrollbar appears even.
#4784 Incorrect cursor position after delete table cells brooks Bug Normal CKEditor 3.3 General
Description

Reproducing Procedures

  1. Open 'replacebyclass' sample page insert an default table.
  2. Click inside one of the table cell and open context menu on it.
  3. Click 'Cell->Delete Cells' to remove it.
  • Actual Result: The cursor is not blinking at the same position agreed on all browsers, especially for some one the cursor is lost.
#4786 Changing paragraph format doesn't work in some situations Frederico Caldeira Knabben Bug Normal CKEditor 3.1 General
Description

This is a regression bug, works in CKEditor 3.0.1.

Steps to reproduce:

  • open replacebyclass sample
  • select the whole first line
  • change format to "Formatted"
  • expected result: text is surrounded with <pre> tag
  • actual result: no changes (<p> tag is still there)

#4787 Unable to undo after insert page break for print in IE Bug Normal CKEditor 3.2 Core : Undo & Redo
Description

Reproducing Procedures

  1. Open 'replacebyclass' sample page.
  2. Insert a 'Page Break for Print' and type some text then.
  3. Undo once.
  • Actual Result: Subsequent undos will not able to remove the fake element.
#4788 Unable put cursor after the last image in IE Bug Normal General
Description

Reproducing Procedures

  1. Open 'replacebyclass' sample page and load the document with the following source:
    <p>
    	<img alt="" src="http://dev.fckeditor.net/chrome/site/logos.gif" /></p>
    
  2. Try to move after the image with either 'End' key or 'Arrow Right'.
  • Actual Result: It's not able to put cursor after the image.
#4789 [Safari] Changing image properties produces lots of duplicated styles Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

Steps to reproduce:

  • paste the following code in source mode:
    <p>
    	<img align="left" alt="" height="168" hspace="10" src="http://a.cksource.com/c/1/inc/img/demo-little-red.jpg" width="120" /></p>
    
  • switch to wysiwyg mode
  • click on the image and open the image dialog
  • change border, hspace, vspace
  • click ok
  • open image dialog again
  • change border, hspace, vspace to some other values
  • click ok
  • result:
    <p>
    	<img alt="" src="http://a.cksource.com/c/1/inc/img/demo-little-red.jpg" style="border-color: initial; border-color: initial; border-color: initial; border-color: initial; border-top-width: 7px; border-right-width: 7px; border-bottom-width: 7px; border-left-width: 7px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-color: initial; margin-left: 8px; margin-right: 8px; margin-top: 9px; margin-bottom: 9px; float: left; width: 120px; height: 168px; " /></p>
    
  • border-color: initial; is repeated a couple of times
  • the number of repeats increases every time we change border/hspace/vspace properties

This bug probably has been introduced in #4246.

#4790 CKEditor in enterMode = BR, problem with bullet list Garry Yao Bug Normal CKEditor 3.4.3 Core : Lists
Description

This ticket is similar to #3836. I think it happens only in Opera (tested on 10.10).

  1. Open the replace by code example page with enterMode = BR;
  2. Make the content and selection as below:
    line1
    <ul><li>[item1</li><li>item2]</li></ul>
    line2
    
  3. Click on 'Bullet List' to remove list;
  • Expected Result:
    line1<br />
    item1<br />
    item2<br />
    line2
    
  • Actual Result:
    line1<br />
    item1item2<br />
    line2
    
#4791 Problem with moving focus to a form element Garry Yao Bug Normal CKEditor 3.3 General
Description

Problem exists at least in FF 3.5.5.

Steps to reproduce

  • paste the following code in source mode:
    <p>
    	aaa</p>
    <form action="action" method="get" name="name">
    	<input checked="checked" name="dfgd" type="checkbox" value="dfgd" /></form>
    <p>
    	bbb</p>
    
  • switch to wysiwyg mode
  • try moving focus to the form element
  • problem: although it is possible to move focus to the form element, cursor is not visible

Problem doesn't exist until we switch to source mode (if we add the checkbox element in wysiwyg mode, it is possible to move focus using a mouse, using arrow keys always doesn't work).

#4792 Unable to add anything after form element Bug Normal General
Description

Steps to reproduce:

  • paste the following in source mode:
    <p>
    	sdfsd</p>
    <form action="dfgdf" method="get" name="dfgd">
    	<p>
    		<input name="dfgdf" type="text" value="dfg" /></p>
    </form>
    
  • switch to wysiwyg mode
  • try clicking with a mouse below the form element to create new paragraph and to add some content
  • result: in FF 3.5.5 it is impossible to do this. In IE8, when clicking for the first time, one new line is added above the input element (inside of the form). When clicking for the second time, cursor appears for a while below the form element but after a while it immediately jumps back to the form element. It seems that in IE8 the behavior in svn version has slightly changed since 3.0.1 (in 3.0.1 it simply didn't work, new line was not created).
#4793 SCAYT causing lots of duplicate tags Bug Normal CKEditor 3.3 General
Description

Confirmed in IE8.

Steps to reproduce:

  • enable SCAYT
  • paste the following in source mode:
    <p>
    	<strong><strong>Gdynia</strong> Warszawa Poznan Krakow </strong></p>
    
  • switch to source mode and back to wysiwyg mode a couple of times
  • result:
     <p>
    	<strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong>Gdynia</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong> Warszawa Poznan Krakow </strong></p>
    
#4794 Cannot remove format from selected text when SCAYT is enabled Bug Normal CKEditor 3.3 General
Description

Steps to reproduce:

  • enable SCAYT
  • having the following code and selection:
    <p>
    	<strong>Gdynia Warszawa [Poznan]</strong></p>
    
    press Ctrl + B
  • expected result:
    <p>
    	<strong>Gdynia Warszawa </strong>Poznan</p>
    
  • actual result:
     <p>
    	Gdynia Warszawa Poznan</p>
    
#4795 [IE] Deleting focused horizontal line/table by DEL key generates javascript error Garry Yao Bug Normal CKEditor 3.2 General
Description

To Reproduce

  • Open sample page with IE
  • Click HR button from toolbar
  • Press 'Delete' key
  • Error occurs on line.210 of selection/plugin.js
#4796 Flash objects are output incorrectly Bug Normal Core : Output Data
Description

Reproducing Procedures

  1. Open 'replacebyclass' sample page and load the document with the following source:
    <p>
    <object>
    <param name="quality" value="high" />
    <param name="movie" value="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" />
    <embed quality="high" src="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" type="application/x-shockwave-flash">
    </embed>
    </object></p>
    
  2. Switch to 'Source' mode.
  • Actual Result:
    <p>
    	<object> <param name="quality" value="high" /> <param name="movie" value="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" /> <embed quality="high" src="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" type="application/x-shockwave-flash"></embed> </object></p>
    
  • Expected Result: Spaces between those elements are trimmed:
    <p>
    	<object> <param name="quality" value="high" /><param name="movie" value="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" /><embed quality="high" src="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" type="application/x-shockwave-flash"></embed></object></p>
    
#4797 Opera: using enter key in dialogs triggers javascript error Garry Yao Bug Normal CKEditor 3.3 General
Description

When pressing enter in the dialog, an error occurs

Steps to reproduce (1)

  • select some text
  • open link dialog
  • type some url and press enter (without moving with a tab to the "ok" button)
  • result:
    Event thread: change
    Error:
    name: TypeError
    message: Statement on line 2255: Cannot convert undefined or null to Object
    stacktrace:   Line 2255 of linked script http://127.0.0.1/ckeditor%203.0.x/_source/plugins/dialog/plugin.js
        			return this.getInputElement().getValue();
      Line 72 of linked script http://127.0.0.1/ckeditor%203.0.x/_source/plugins/dialogui/plugin.js
        function(){ this.fire( 'change', { value : this.getValue() } ); }
      ...  Line 150 of linked script http://127.0.0.1/ckeditor%203.0.x/_source/core/event.js
        						listenerFunction.call( scopeObj, ev );
      ...  Line 245 of linked script http://127.0.0.1/ckeditor%203.0.x/_source/core/event.js
        								var retData = listeners[i].call( this, editor, data, stopEvent, cancelEvent );
      Line 48 of linked script http://127.0.0.1/ckeditor%203.0.x/_source/core/dom/domobject.js
        				domObject.fire( eventName, new CKEDITOR.dom.event( domEvent ) );
      ... 
    
#4798 Opera: using tab key makes input fields undeitable Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

This is a regression bug.

Steps to reproduce

  • open any dialog (link dialog for example)
  • press tab once
  • click cancel button with your mouse
  • result: no errors in the error console... but if you now open any dialog with the input element, you'll not be able to type there anything.
#4799 SCAYT interferes on collapsed selection styling Bug Normal CKEditor 3.3 UI : Spell Checker
Description
  1. Load the following HTML:
    <p>asdasdasd</p>
    
  1. Enable SCAYT. The "asdasdasd" text will get underlined.
  1. Click in the middle of "asdasdasd".
  1. Select any style, for example Bold.
  1. Type text.

The style will not be applied to the typed text.

#4800 Opera: when SCAYT is enabled, it is impossible to create new paragraph Bug Normal CKEditor 3.3 UI : Spell Checker
Description

Steps to reproduce

  • type some text
  • enable SCAYT
  • press enter, type some text
  • result: new paragraph is not created, text is added at the end of previous paragraph, an error is reported in the error console:
    Event thread: keyup
    Error:
    name: TypeError
    message: Statement on line 3677: Cannot convert undefined or null to Object
    stacktrace:   Line 3677 of linked script http://svc.spellchecker.net/spellcheck3/lf/scayt/_base3.xd.js
        while(node!=_3ad.test(node.nodeName)&&!node.previousSibling){
      ...  Line 47 of linked script http://svc.spellchecker.net/spellcheck/lf/scayt/scayt1.js
        function(){return _119.apply(_118,arguments||[]);}
    
#4801 FF2 dialog drag-drop broken Bug Normal General
Description

In FF2, moving dialog with drag-drop is broken for both quirks and strict.

Drag-drop results in jumping dialog window.

#4802 [FF] Template text & table incorrect Bug Normal General
Description

In FF 2 & 3.0, template text & table show incorrect (collapsed) table when insterted. Works well in Chrome.

#4803 [FF2] Toolbar icons flicker Bug Normal General
Description

Toolbar icons flicker when moving mouse above them. Works well in FF 3.0.

#4804 Context submenu left arrow not working Bug Normal General
Description

Context submenu left arrow not working, when trying to go back to previous menu level. Both strict and quirks.

Reproduced on FF2, FF3.0, Chrome.

#4805 Opera: flash preview doesn't work Bug Normal UI : Dialogs
Description

Steps to reproduce:

#4806 [Chrome] Flash preview not fully visible Bug Normal General
Description

[Chrome] Flash preview not fully visible in Flash dialog.

Reproduce

  1. Open flash dialog
  2. Paste swf URL (eg http://ckeditor.com/userfiles/flash/Buttons.swf )
  3. Change focus (hit tab) to load preview
  4. Preview works, but lacks top part.
#4807 Setting background/text color doesn't work Bug Normal General
Description

Confirmed in Safari 4.0.4 and Opera 10.10 @ Win XP.

Steps to reproduce

  • start with a blank page
  • click "Text Color" button (or "Background Color") and select red color
  • type some text
  • expected result: created text is red
  • actual result: text is black
#4808 A question about background image in fck or ckeditor Task Normal General
Description

Hi, I have one question how i can add background image in fckeditor or ckeditor ? Maybe editor have not this option ? Pleas answer,

#4809 Table caption tag is output in wrong place Garry Yao Bug Normal CKEditor 3.5.3 Core : Tables
Description

<caption> is output after <thead>. Seems to be the same issue with #2874. Occurs with IE and FF. Chrome seems to work fine.

To Reproduce

  • Insert new table with <th> and caption using table dialog.
  • Switch to source mode.
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px">
    	<thead>
    		<tr>
    			<th scope="col">
    				&nbsp;</th>
    			<th scope="col">
    				&nbsp;</th>
    		</tr>
    	</thead>
    	<caption>
    		foo</caption>
    	<tbody>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    
#4810 Text change request for image properties dialog preview label Garry Yao New Feature Normal CKEditor 3.3 UI : Dialogs
Description

Image Properties Dialog / Image Info tab

We've received requests from users to change the label "Preview" to something else. The users are confused by the "Lorem Ipsum" text. They think the text is going to be inserted when they click OK. One suggestion for a different label is "Image Preview and Placeholder Text".

#4811 IE8 Ckeditor Source View, css :hover Bug Normal General
Description

I have downloaded the nightly build #4708.

The issue is when in IE8 Vista I add a css style with #bob:hover {color:red} or .bob:hover{color:red} . So basically a :hover on a non 'a' and when in the source view of ckeditor, the scroll bar moves up and down unexpectingly. You need to paste a cetain amount of copy into the html source view and then when you hover over the scroll bar is jumps up and down and is twitchy. When I take that style out everything is good.

I have attached a copy of a file that replicates this issue.

#4812 'Esc' key is not working for dialog on Opera Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

Press 'Esc' doesn't close the dialog in all dialogs on Opera.

#4813 Bullets not applied on single line Bug Normal CKEditor 3.1 Core : Lists
Description

The editor does not apply a bullet/number list when a single line of text is selected.

To reproduce:

  1. Open editor and add one line of text
  2. Select line of text and use the number or bullet list action

Result: Nothing happens. When there are multiple lines selected, the list is applied as expected.

Reproduced in IE 7.

#4814 add SCAYT plugin updates to CKEditor 3.1 release Task Normal CKEditor 3.1 UI : Spell Checker
Description

knowing bugs fixed

plugin custom params added

updated scayt core supporting

#4816 add WSC plugin updates to CKEditor 3.1 release Task Normal CKEditor 3.1 UI : Spell Checker
Description

plugin custom params added

#4817 FCK Editor Jump IE8 BUG Bug Normal CKEditor 3.3 General
Description

When i have a font tag that wrap alot of text and i like to edit the text in the middle it is put the pointer all the time on the start of the font tag.

If i have a scroller it is jump me up and i cannot edit the text. I test it on the newest version of CKEditor and it has not been fixed.

Example:

  1. Open IE8
  2. Paste this code on the source mode of FCK/CKEditor:
<font>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa <br>
</font>
  1. Scroll down and try to edit the text.
#4818 Opera: Cannot insert new row when clicking on an empty cell Bug Normal UI : Context Menu
Description

It is impossible to add new row (row -> insert row before) using the context menu, if the context menu is opened inside of an empty cell. Confirmed in Opera 10.10 @ Win XP.

Steps to reproduce

  • create empty table
  • right-click inside of a table (do not type anything)
  • select row -> insert row before
  • result: no changes, the numer of rows has not changed
#4819 Flash dialog properties / advanced / allow configuration of defaults New Feature Normal General
Description

It'd be nice if it was possible to be able to have editor configured default values for "Auto Play", "Loop", etc when creating a new flash object.

#4821 Icons in the toolbar are distorted with IE and zoom != 100% Sa'ar Zac Elias Bug Normal CKEditor 3.5 UI : Toolbar
Description

as reported in http://cksource.com/forums/viewtopic.php?p=43055#p43055 using IE with a zoom level different than 100% will distort the icon images in the toolbar. The problem is also present in the context menu.

But the v2 skin doesn't suffer the problem in the toolbar, I've checked and adding a background color to the

.cke_skin_v2 .cke_button a,
.cke_skin_v2 .cke_button a.cke_off
{
	filter: alpha(opacity=70); /* IE */
	opacity: 0.70; /* Safari, Opera and Mozilla */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

rule fixes the problem. I haven't searched the fix for the context menu.

So the fix would need to find the correct color for the skin (maybe that means problems with Kama) and also the rule to fix the context menus.

#4822 [IE] Applying 'Headers' to existing table does not work Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

To Reproduce

  • Open CKEditor sample
  • Click 'table' button from toolbar
  • Just click OK to add a new table
  • Right click inside of first cell and select table properties
  • Change 'Headers' from 'None' to 'First Row'
  • Click OK
  • Then, 'invalid argument' error occurs at l.982 of selection/plugin.js, and whole content is removed from editor!
#4823 Table cell's bgcolor is better to be applied to background-color style, not to bgColor attribute New Feature Normal CKEditor 3.3 UI : Dialogs
Description

Or at least configurable.

#4824 [IE] Writing "<br/>&nbsp;" at the very first in <td> breaks the editor Garry Yao Bug Normal CKEditor 3.2 UI : Source View
Description

To Reproduce

#4825 Browser context menu is opened when clicking right mouse button twice Minh Nguyen Bug Normal CKEditor 3.3 General
Description

This issue can be reproduced in any browser (tested in IE8, Safari 4.0.4, Opera 10.10, FF 3.5.5), but:

  • in FF 3.5.5 @ XP it doesn't happen always, however it happens often when right-clicking twice on a link

In FCKeditor I'm having this problem only in Opera.

#4826 Context menu doesn't work sometimes Garry Yao Bug Normal CKEditor 3.1 UI : Context Menu
Description

This is a regression bug, this problem didn't exist in 3.0.1. I don't see any errors in the error console when this bug occurs.

Steps to reproduce

Using Safari 4.0.4 @ Win (XP/SP3 in my case)

  1. restart Safari
  2. open page with CKEditor (trunk, 3.1 branch, doesn't matter)
  3. right click your mouse to open the context menu
  4. repeat steps 1-3 until you'll see that context menu is not working

Instead of restarting, you may also try opening multiple tabs until you'll find that one with context menu not working.

Once you'll be able to open Safari in "CKEditor context menu not working" mode, you can try clearing the browser cache, refreshing the page and so on and the context menu will be still broken in that tab. If you open CKEitor 3.0.1 in the same tab, context menu will be working there (in CKEditor 3.0.1).

One user reported that on Snow Leopard sontext menu doesn't work in Safari, Google Chrome beta and FF 3.5.3. Another Snow Leopard user reported that this issue happens randomly, just as I described above and only in Safari. So, probably this is issue only exists in Safari, I don't have a Mac to check it.

#4827 Open image dialog on existing element cause error Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

Environment

3.1.x branch

Reproducing Procedures

  1. Open 'replacebyclass' sample page and load the document with the following source:
    <p>
    <img alt="" src="http://dev.fckeditor.net/chrome/site/logos.gif" /></p>
    
  2. click on the image and open 'Image' dialog;
  • Actual Result: JavaScript exception thrown.
#4828 [Chrome] Paste from word dialog stretched in quirks Bug Normal CKEditor 3.2 UI : Dialogs
Description

In Chrome, Paste From Word dialog is one-side horizontally stretched in quirks mode. In both LTR and RTL it's stretched to the right.

Reproduced in both 3.0.x and 3.1.x branches.

#4829 [IE] Applying formatting from drop-down list on words highlighted by find does not work Garry Yao Bug Normal CKEditor 3.3 Core : Styles
Description

To reproduce the defect:

  1. Use the find command to highlight a particular word
  2. Close find dialog
  3. Use a drop-down list to apply some formatting to the highlighted word e.g. font size

Actual Result: The selected formatting is not applied to the word and the word is not highlighted

Expected Result: The formatting should apply to the word and the word should still remain highlighted

Tested on IE 6 & 7

#4830 [IE] Editing image with keyboard does not retain the properties of the image when displaying the image dialog Garry Yao Bug Normal CKEditor 3.3 General
Description

To reproduce:

  1. Insert an image using the image dialog
  2. Using the keyboard, highlight the image
  3. Select the image action from the context or toolbar

Result: the image properties are not populated in the image dialog

Expected result: the dialog should be populated with the image's properties.

Note: using the mouse to select the image, does work as expected.

Tested on IE 6 & 7

#4831 No table cell submenu when only one cell in a table Bug Normal General
Description

No table cell submenu when only one cell in a table.

Reproduce

  1. Use following content
<table>
	<tbody>
		<tr>
			<td>
				TD</td>
		</tr>
	</tbody>
</table>

2 .Right click on TD to trigger context menu

  1. Try to open Cell submenu - it's not showing.

Reproduced in Chrome.

#4832 [Chrome] Template dialog hover layout issue Bug Normal General
Description

Template dialog hover layout issue. Please refer to attached screenshot.

Reproduced in Chrome.

#4833 Dialog autosizing usability issue in RTL Bug Normal General
Description

When in RTL mode dialog changes it's size to fit the contents, it gains more space to the right, which changes position of tab bar.

This is not an issue in LTR, when tab bar is placed on the left.

#4834 [Chrome] In RTL DIV container typing on the end is broken Bug Normal CKEditor 3.3 General
Description

Reproduced in Chrome.

Reproduce

  1. Create DIV container with RTL direction (Advanced tab -> Language Direction).
  2. Start typing

Result: New characters shows up on the right end. Expected: New characters shows up on the left end.

#4835 Maximized editor wider than view port Garry Yao Bug Normal CKEditor 3.1 UI : Toolbar
Description

In Chrome, maximized editor is wider than view port. Please refer to attached sceenshot.

#4836 SCAYT - when enabled, text formatting is working differently Garry Yao Bug Normal CKEditor 3.3 UI : Spell Checker
Description

Probably somehow related to #4793, but this problem exists in many browsers (tested on FF 3.5.5, Safari 4.0.4, IE8):

  • paste the following in source mode:
     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
    
  • switch to wysiwyg mode
  • enable SCAYT
  • select "etur adipisicing elit, sed", press Ctrl + B
  • result:
    ... consect<strong>etur</strong><strong> adipisicing elit, sed</strong> do ...
    
    (when SCAYT is disabled, only one <strong> element is created, when enabled, another <strong> element is created straight after the end of first word)
#4837 Updated translations for CKEditor 3.0.1 New Feature Normal CKEditor 3.1 UI : Language
Description

Attached is fully translated fi.js for CKEditor 3.0.1

#4838 [FF2] Image dialog, link tab layout issue Bug Normal General
Description

Image dialog's link tab has a layout issue in Firefox2. Please refer to attached screenshot.

#4839 [FF2] Combobox not focusable Bug Normal General
Description

Combobox aren't focusable in Firefox2.

Reproduce

  1. Focus editing area.
  2. Press ALT+F10 to focus toolbar.
  3. Keep pressing SHIFT+TAB to reach combobox.

Result: Focus jumps back to editing area. Expected: Focus should be on the combo box.

#4840 [FF2] Special character dialog SHIFT+TAB not fully working Bug Normal General
Description

Under Firefox2 in Special Character dialog, SHIFT+TAB is not working after reaching dialog's button.

#4841 Context menu rendered outside of viewport Bug Normal General
Description

Context menu sometimes is rendered outside of viewport. Please refer to attached screenshot from Firefox2.

#4842 Radio and checkbox dialogs layout Bug Normal General
Description

Radio and checkbox dialogs layout is too small in Firefox3.0. Please refer to attached screenshot.

#4843 [FF] Redo not working after viewing source Bug Normal General
Description

To reproduce:

  1. Open nightly build
  2. Type a few sentences
  3. Undo half the entered text
  4. Go to source and back to rich text
  5. Try to redo

Result: the redo command does not redo the whole list of changes

Expected result: the redo command should redo all changes that were initially undone in step 3.

Reproduced on FF 3.5.5

Works in IE 7.

#4844 IE: dialogs don't work when running many editors on the same page Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.5.4 General
Description

Confirmed on IE7/IE8. Fortunately, this issue happens only when running a lot of editors at the same page (like 25-30+).

IE shows this error:

Not enough storage is available to complete this operation.
#4845 HTML parser generates wrong HTML using <li> inside <table> Bug Normal UI : Source View
Description

Using the HTML source attached, CKEditor generates a wrong HTML after parse the code (when click on source code button)

#4846 Opera: object becomes unselected when context menu is opened Bug Normal UI : Context Menu
Description

When selecting an image, right-clicking with a mouse and opening image properties, all values are empty. Tested on Opera 10.10 (build 1893) @ XP/SP3.

Steps to reproduce

  • Start with the following source
    <p>This is s<img alt="" src="http://a.cksource.com/c/1/inc/img/opensource-110x95.gif" style="width: 214px; height: 44px" />ome <strong>sample text</strong></p>
    
  • click on an image
  • right-click to open the context menu (note: when using Shift+F10, this problem does not exist)
  • result: dialog is opened, but image properties are missing
#4847 Opera: when opening context menu, an empty paragraph is added Bug Normal General
Description

When right-clicking with a mouse on an image to open the context menu, closing the context menu and then switching to source mode, an empty paragraph appears (<p>&nbsp;</p>).

Tested on Opera 10.10 (build 1893) @ XP/SP3. Does not happen when using Shift+F10.

Steps to reproduce

  • Start with the following source
    <p>This is s<img alt="" src="http://a.cksource.com/c/1/inc/img/opensource-110x95.gif" style="width: 214px; height: 44px" />ome <strong>sample text</strong></p>
    
  • click on an image
  • right-click to open the context menu (note: when using Shift+F10, this problem does not exist)
  • click somewhere inside of the editing area to close the context menu (or press Esc)
  • switch to source mode
  • result:
    <p>
    	&nbsp;</p>
    <p>
    	This is s<img alt="" src="http://a.cksource.com/c/1/inc/img/opensource-110x95.gif" style="width: 214px; height: 44px" />ome <strong>sample text</strong></p>
    

Each time you repeat all steps, another empty paragraph is added.

#4848 IE: cannot type anything altghough cursor is blinking in the editing area Frederico Caldeira Knabben Bug Normal CKEditor 3.1 General
Description

Happens only if you click with your mouse at the beginning of the editing area. Confirmed in IE8 @ Win XP/SS3

Steps to reproduce

  • Starting with the following source:
    <p>This is some <strong>sample text</strong>. You are using</p>
    
  • switch to wysiwyg mode
  • point your mouse straight before "This" and press the button
  • result: cursor is blinking in the editing area, but if you type anything, it will not appear in the editor.

This bug existed also in 3.0.1, but in 3.0.1 the cursor was not visible in the editing area at all.

#4849 Opera: right-clicking with a mouse does not select an object Bug Normal General
Description

In every browser, when right-clicking with a mouse, object is selected automatically. However in Opera, if you select some object, then move your mouse into other place and right-click to open the context menu, you'll see that it is opened for previously selected object.

Steps to reproduce

  • Start with the following source:
     <p>
    	<a href="http://firstlink.example.com">First link</a> This is some <strong>sample text</strong>. <a href="http://secondlink.example.com/">Second Link</a>.</p>
    
  • click on the first link
  • right-click on the second link and select "Edit Link" item
  • result: link dialog is using values from the first link.
#4850 Better Maths (Tex) editting on mediawiki version of FCKeditor New Feature Normal Project : MediaWiki+FCKeditor
Description

Consider merging the concepts in the Tex_Editor mediawiki extension into the "math" button in the mediawiki fckeditor version:

This gives a friendlier user interface.

See (http://www.mediawiki.org/wiki/Extension:TeX_Editor)

#4851 IE : Delete table rows may throw a js error Garry Yao Bug Normal CKEditor 3.2 General
Description
  1. Load the following HTML:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px">
	<tbody>
		<tr>
			<td>
				AAA</td>
			<td>
				BBB</td>
		</tr>
		<tr>
			<td>
				CCC</td>
			<td>
				DDD</td>
		</tr>
		<tr>
			<td>
				EEE</td>
			<td>
				FFF</td>
		</tr>
	</tbody>
</table>
  1. Select the entire text of the two first rows with the mouse. This is an important step. The everything from AAA to DDD must be selected.
  1. Open the context menu for the selection.
  1. Select Row > Delete Rows.

A JavaScript error is thrown.

#4852 [FF3] Hidden input dialog layout broken in V2 skin Bug Normal UI : Dialogs
Description

Hidden input dialog layout is broken in V2 skin. Please refer to attached screenshot.

Reproduced in Firefox3.

#4853 [FF3] DIV Container dialog layout broken in Office2003 skin Bug Normal UI : Dialogs
Description

Hidden input dialog layout is broken in V2 skin. Please refer to attached screenshot.

Reproduced in Firefox3.

#4854 [FF3] Maximize layout broken in RTL quirks Bug Normal UI : Toolbar
Description

Maximize layout is broken in RTL quirks - there is an additional space on the bottom. Using resize grip fixes this isssue. Please refer to attached screenshot.

Reproduced in Firefox3.

#4855 [FF3] Toolbar wrapping problem in V2 skin Garry Yao Bug Normal CKEditor 3.1 UI : Toolbar
Description

Toolbar wrapping problem in V2 skin. Please refer to attached screenshot.

Reproduced in Firefox3 Strict.

#4856 CKEditor leaving tags when removing flash objects Garry Yao Bug Normal CKEditor 3.1 General
Description

Steps to reproduce

  • paste the following in source mode:
    <p><object width="660" height="525"><param name="movie" value="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="525"></embed></object></p>
    
  • switch to wysiwyg mode
  • press "Delete" button
  • result:
    <p>
    	<object height="525" width="660"><param name="movie" value="http://www.youtube.com/v/HwNXvQ2OK_k&amp;hl=pl_PL&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /></object></p>
    
  • expected result: the whole object should be removed (it was working in CKEditor 3.0 RC)

This is a regression bug introduced in [3779].

#4857 Flash dialog - undefined values in "Properties" -> "Align" Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

To reproduce:

  • Open Flash Dialog
  • Go to "Properties -> Align"
  • Click on the select box, there are 8 undefined values, only left and right are available.
Note: See TracQuery for help on using queries.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy