Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4401 - 4500 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#4639 Active Checkbox Tool New Feature Normal General
Description

It would be REALLY great to be able to insert a checkbox into a CKEditor window via a button. By checkbox, I do not mean the usual form checkbox (though it could be done this way), I mean an active one like in Microsoft Onenote:

  • If you click on it in the interface, its state toggles between checked and unchecked. This changes the underlying HTML source.
  • This could be implemented via a form checkbox or by 2 images with a little bit of Javascript onClick action.

This would allow using the CKEditor for managing To-Do lists (like in One Note). Our notes widgets auto-save the CKEditor state for you -- so you can always come back and pick up where you left off. Having a way of making checkboxes that you can click to toggle would make these really powerful.

I suppose this could be done my writing a custom plugin -- but some quick reads shoes that this is not trivial to say the least. However, it seems like a very simple thing on the face of it.

#4640 Small optimizations in the fileBrowser plugin Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 General
Description

At the bottom, the elements that are reused can be declared as local variables so it's a little clearer and it will compress a little further (sorry, I still don't have installed here any SVN to provide a diff)

	CKEDITOR.plugins.add( 'filebrowser',
	{
		init : function( editor, pluginPath )
		{
			editor._.filebrowserFn = CKEDITOR.tools.addFunction( setUrl, editor );

			CKEDITOR.on( 'dialogDefinition', function( evt )
			{
				var definition = evt.data.definition, 
					element;
				// Associate filebrowser to elements with 'filebrowser' attribute.
				for ( var i in definition.contents )
				{
					element = definition.contents[ i ] ;
					attachFileBrowser( evt.editor, evt.data.name, definition, element.elements );
					if ( element.hidden && element.filebrowser )
					{
						element.hidden =
							!isConfigured( definition, element[ 'id' ], element.filebrowser );
					}
				}
			} );
		}
	} );

In the isConfigured I think that the last line can be also optimized to avoid repeated function calls: Turn

		return ( definition.getContents( tabId ).get( elementId ).filebrowser && 
				 definition.getContents( tabId ).get( elementId ).filebrowser.url );

Into

		var elementFileBrowser = definition.getContents( tabId ).get( elementId ).filebrowser;
		return ( elementFileBrowser && elementFileBrowser.url );
#4641 Drop down box dont work: Create and destroy editor instances for Ajax applications Bug Normal General
Description

When an editor instance is created , destroyed and recreated, then dropdown boxes in 'font', 'style', 'size' etc. don't work. It also happens in sample demo 'ajax.html' attached with the download. It happens on FF, IE6, 7..

I'm getting following error:

this.$ is undefined on line

"else if(k.$.attachEvent)k.$.attachEvent(....previousSibling.nodeType==3)continue;\r\n" in ckeditor.js

==== Full call stack:

this.$ is undefined anonymous("_cke_nativeListeners")ckeditor.js (line 11) anonymous("blur")ckeditor.js (line 10) anonymous(149, Object $=a type=1, 4, Object name=r, Object name=s)ckeditor.js (line 79) anonymous(a javascript...id('Font'))ckeditor.js (line 86) anonymous()ckeditor.js (line 9) anonymous(98)ckeditor.js (line 9) function onclick(event) { CKEDITOR.tools.callFunction(98, this); return false; }(click clientX=595, clientY=252)6 (line 2) [Break on this error] else if(k.$.attachEvent)k.$.attachEvent(....previousSibling.nodeType==3)continue;\r\n

#4642 Invalid HTML causes infinite loop in IE Alfonso Martínez de Lizarrondo Bug Normal FCKeditor 2.6.6 General
Description

This bug was introduced here: http://dev.fckeditor.net/ticket/2156

In IE, paste the following content in the source mode:

<p id="1"><strong></span></p>
<p id="2"><strong></span></p>
<p id="3"><strong></span></p>
<p id="4"><strong></span></p>
<p id="5"><strong></span></p>
<p id="6"><strong></span></p>
<p id="7"><strong></span></p>
<p id="8"><strong></span></p>
<p id="9"><strong></span></p>
<p id="10"><strong></span></p>
<p id="11"><strong></span></p>
<p id="12"><strong></span></p>
<p id="13"><strong></span></p>
<p id="14"><strong></span></p>
<p id="15"><strong></span></p>
<p id="16"><strong></span></p>
<p id="17"><strong></span></p>
<p id="18"><strong></span></p>
<p id="19"><strong></span></p>
<p id="20"><strong></span></p>
<p id="21"><strong></span></p>
<p id="22"><strong></span></p>

then switch back to wysiwyg, press source button again - IE hangs and enters an infinite loop, after a while it asks whether script execution should be stopped.

The problem is caused by FCKXHtml._RemoveXHtmlJobProperties() function in fckxhtml_ie.js.

#4643 iframe containing embedded video - in HTML mode, video overlays markup - IE only Bug Normal General
Description

Using an <iframe> to point to an HTML page which contains a simple object tag embedding Windows Media Player (playing an MPG video).

In CKEditor, when you click the HTML source button, the editor switches to HTML mode but the video frame remains, overlaying and obscuring the markup/editor.

#4644 Emotion smiley icons do not contain descriptive ALT text. Bug Normal Accessibility
Description

When JAWS screen reading software reads out the ALT text of the Smiley icons it reads something like :D, or nothing at all.

A descriptive explanation of each emotion icon should be provided so that JAWS can read it out to the user.

#4645 Slovene language translation for CKFinder 1.4.1.1 New Feature Normal UI : Language
#4646 Slovene language translation for CKFinder 1.4.1.1 New Feature Normal UI : Language
Description

I translated the language file for CKFinder 1.4.1.1 to Slovene language. Attached is the sl.js file.

#4647 Image info doesn't fill up dialog when open from context menu Garry Yao Bug Normal CKEditor 3.2 UI : Context Menu
Description
  1. Open the 'replace by class' sample page in IE6, load the editor with following content and selection:
    	<p style="width:200px">[<img src="http://dev.fckeditor.net/chrome/site/logos.gif" />]</p>
    
  2. Right click to open context menu and select 'Image';
  • Actual Result: The 'Url' field is empty in opened dialog.
#4648 Support for iframe Sa'ar Zac Elias New Feature Normal CKEditor 3.5 General
Description

The editor should provide support for iframes, just like it support object elements. A placeholder should be displayed for iframes. This ticket is not related to the dialog we could have to edit iframe properties, which should be a successive evolution for this feature.

#4649 The new color picker is not keyboard accessible Garry Yao New Feature Normal CKEditor 3.3 Accessibility
Description

The color picker dialog that allows the user to set the table cell background and border color is not keyboard accessible.

#4650 Can not select image when navigating text with arrow keys. Garry Yao Bug Normal CKEditor 3.3 Accessibility
Description
  1. Add some text, insert an image, and add some more text after the image.
  2. Using the left arrow key move the cursor back to select the image.

Observe that the cursor by-passes the image an moves to the text before the image. This prevents the user from opening the image context menu using the keyboard.

#4651 [FF] Deleted and Inserted text styles being rendered Garry Yao Bug Normal CKEditor 3.1 Core : Styles
Description

Using the Ajax sample.

  1. Create an editor instance.
  2. Insert some text.
  3. Select the text and apply the "Deleted Text" style.

Observe that the text does not change.

When you remove the editor from the page the text remains the same. The text does get surrounded by del elements. It may be due to the fact that del and ins elements are not allowed to contain block elements when they are used like inline elements.

#4652 Config for disable editor context menu Tobiasz Cudnik Bug Normal CKEditor 3.5 UI : Context Menu
Description

We should provide an option for disable context menu in editor, probably porting #311 from v2.

#4654 Default label for rich combo doesn't work Garry Yao Bug Normal CKEditor 3.1 UI : Toolbar
Description

Specifically, CKEDITOR.config.font_defaultLabel and fontSize_defaultLabel is not working at all.

#4655 message: contains unauthenticated content (ckeditor 3.0.1) Bug Normal CKEditor 3.4.2 UI : Spell Checker
Description

the above message or one that says "insecure content on secure page" appears when the editor is loaded onto a secure site (https://).

headers clearly show content is loaded from (http:)spellchecker.net.

there is no documentation on how to disable the scayt plugin.

appears in all browsers. loaded by a php page

#4657 Opera: It's not possible to apply styles on collapsed selections Frederico Caldeira Knabben Bug Normal CKEditor 3.4.1 Core : Styles
Description

As of Opera 10, it's not anymore possible to apply styles on collapsed selections.

TC:

  1. Click in the editing area to have a collapsed selection (blinking caret).
  2. Hit CTRL+B to apply the Bold style.
  3. Type some text.

The typed text should be bold.

Confirmed with Opera 10.10 build 1874.

#4658 Bespin integration New Feature Normal General
Description

Mozilla Lab Bespin Embedded just offered a preview released, which is by nature a excellent 'source' editing block alternative for us.

A 'bespin' plugin should be created to start the integration effort with Bespin though the current release is still missing many important features for us.
Bespin DOEST NOT support all versions of IE and Opera at this moment.

#4659 ckEditor Image Info Properties tab - display issue with file browser Bug Normal General
Description

I have encountered some very strange behavior in IE 6 & 7 (not so visible in IE 8) regarding the Image Properties dialog, Image Info tab when integrating ckFinder.

Relevant info found here:

http://cksource.com/forums/viewtopic.php?f=11&t=16319

#4660 Translation updates for Norwegian Task Normal CKEditor 3.1 UI : Language
Description

Complete norwegian translation for ckeditor

#4661 Translation missing in link dialog Minh Nguyen Bug Normal CKEditor 3.3 UI : Language
Description

On line 302 in _source/plugins/link/dialogs/link.js there is missing av translation key.

(The text "other" should be possible to translate)

		id : 'protocol',
		type : 'select',
		label : editor.lang.common.protocol,
		'default' : 'http://',
		style : 'width : 100%;',
		items :		
			[ 'http://' ],
			[ 'https://' ],
			[ 'ftp://' ],
			[ 'news://' ],
			[ '<other>', '' ]
		],

#4662 Added support for adding CSS class to tables and cells New Feature Normal General
Description

Hi!

I added support for entering one or more CSS classes to a table and table cell.

Just copy the contents of the attached files into the pluginsfolder and you are up and going :)

I would strongly suggest that this gets added to the core, since its pretty useful.

#4663 Clicking on a paragraph and then near a table sometimes creates an empty paragraph Bug Normal General
Description

To reproduce
-in Demo, click on any paragraph on page.
-then, click below the first paragraph, near the table.
-notice a new paragraph is being created [Only tested with IE].

#4664 config.baseHref not used in WYSIWYG area Bug Normal General
Description

It took me a while to figure out why images were broken when editing a page even though config.baseHref was set to the correct path (I'm using one editor to edit pages in different directories and change the baseHref value dynamically).

I fixed it by changing /plugins/wysiwygarea/plugin.js (around line 559), from:

data =

editor.config.docType +

'<html dir="' + editor.config.contentsLangDirection + '">' +

'<head>' +

To:

data =

editor.config.docType +

'<html dir="' + editor.config.contentsLangDirection + '">' +

'<base href="'+ editor.config.baseHref + '"/>' +

'<head>' +

Please let me know if there is a better way of doing this but this fixed the issue for me.

#4665 [IE] Behavior for pasting from Excel is changed in 'pasting' branch Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

I tried the new pasting feature listed in #4379, and I found that the behavior is changed when I copy & paste from Excel.

Before, the borders of Excel cell was reflected in the CKEditor, but in the pasting branch, borders are no more copied.

#4666 IE - selection is not visible when context menu is opened Garry Yao Bug Normal General
Description

To reproduce:

  • select some text
  • right-click your mouse to open the context menu

Result: selection is not visible (but if you choose "copy", the content is copied properly).

This bug does not occur in FCKeditor. Confirmed in IE6, IE7 and IE8.

#4667 SCAYT autoloading with multiple editors fails Bug Normal UI : Spell Checker
Description

If you are using SCAYT and have two or more editors on a page, the setting FCKConfig.ScaytAutoStartup = true will error on all but one of the editors. All other editors will not allow you to enable SCAYT and you will receive the error, "SCAYT is not ready." If FCKConfig.ScaytAutoStartup is set to false, then each editor can be manually set to enabled with no issue. This error ONLY occurs when the autostartup is set to true.

#4668 bug on editing justified paragraphs Bug Normal General
Description

When editing a justified paragraph using ckeditor 3.0.1 (also fckeditor, last version), any editing that will alter the justification of the first line adds spaces to the beginning of the paragraph. This ruins the justification of the paragraph.

This bug can be reproduced on all browsers that I tested (Firefox, IE, Opera) and all operating systems tested by myself including Windows Vista, Windows XP, Linux (Centos 5.2).

For example:
html before edit:

<p style="text-align: justify;">
	<span style=""><strong>Orders</strong><br />
	Please place all orders online using your account.&nbsp; A confirmation email is provided for a successful order.

Now adding a space in the middle of the word "orders" on the first line.

html after edit:

<p style="text-align: justify;">
	<span style=""><strong>Orders</strong><br />
	&nbsp;Please place all ord ers online using your account.&nbsp; A confirmation email is provided for a successful order.

Note that "&nbsp;" was added to beginning of sentence thereby ruining the justification of the paragraph.

Thanks

#4669 Text colour and background colour are not visible in high contrast mode. Bug Normal Accessibility
Description

In Windows, turn on High Contrast through Accessibility Options in Control Panel. Open an instance of the editor. Observe that the Text Colour and Background Colour options are not displayed on the toolbar.

#4670 Can not navigate to next row with down arrow key if table has a header row. Bug Normal General
Description

Open the Table Properties dialog. Select "First Row" for the Headers option and click OK to close the dialog. Place the cursor in the first cell. Use the down arrow key to attempt to navigate to the next row.

#4671 Switching to source when insert or delete style used adds a empty paragraph. Bug Normal CKEditor 3.1 Core : Styles
Description
  1. Enter some text into the editor.
  2. Apply either the Deleted or Inserted style.
  3. Click the Source icon. Observe the HTML with no leading empty paragraph.
  4. Repeatedly click the Source icon and observe a new paragraph being added each time.
#4672 Undo not removing added horizontal line Garry Yao Bug Normal CKEditor 3.1 Core : Undo & Redo
Description
  1. Enter some text.
  2. Click the Insert Horizontal Line button.
  3. Click the Undo button.

Observe that the horizontal line is not removed. Continuously clicking the Undo button will eventually remove the horizontal line.

#4673 Undo not available straight away if shift key is used to enter first character. Garry Yao Bug Normal CKEditor 3.1 Core : Undo & Redo
Description

When entering some text into the editor use the shift key to capitalize the first character. Observe that the Undo button is not active until about 15 characters have been entered.

#4674 Undo not working for Smileys, Page break and Anchor after HTML source mode. Garry Yao Bug Normal CKEditor 3.2 Core : Undo & Redo
Description
  1. Enter a Smiely, page break or anchor.
  2. Click Source to enter HTML mode.
  3. Click Source again to enter Rich Text mode.
  4. Click Undo and observe the simley, page break or anchor is not removed.
#4675 Remove Format does not reduce block level headings to normal text Bug Normal General
Description

When Remove Format is applied to block level headings, they are not reduced to the default text.

When custom styles such as "Blue Title" are applied to some text and then the Remove Format feature is used, the color from the style is removed, but the heading is not. This seems inconsistent.

#4676 Editing tables using table properties dialog overwrites table's style values Garry Yao Bug Normal CKEditor 3.1 Core : Styles
Description

When a table is edited using the table properties dialog, its style attribute is overwritten with values from the dialog, including those style values that the table dialog does not manage, e.g. float, background-color etc.

E.g.

  1. Create a default table
  2. Edit the table in source mode and add background-color
    <table border="1" cellpadding="1" cellspacing="1" style="background-color: red; width: 200px;">
    	<tbody>
    
  3. Go back to WYSIWYG mode and edit the table properties, leave default values and press OK.

Notice that the table's styles have been reset.

#4677 Keyboard navigation problem with tabs in image dialog Garry Yao Bug Normal CKEditor 3.1 Accessibility
Description

To Reproduce the Issue on the Link Tab.

Open the CK Editor.
Access the Tool bar by Pressing(ALT+F10)
Navigate to Insert Image Icon.
Press Enter.
on the Insert Image Light Box Navigate to Link Tab by Pressing Alt+F10 and then Press Tab
Press Enter.

Actual result: Focus is going no where..The User has to Press Tab twice in order for the Focus to go back in to the First Field.which is URL Text Field.so JAWS is not Reading any thing until the User Press the Tab Key Twice..This will confuse the User whether he is on the Light Box..or the Focus has gone out of the Window.

This will also happen when you Reach the Cancel Link and then we have to Press Tab Twice in order for the Focus to go back to URL Text Field..

Expected result: Focus should go to the URL Text Field and JAWS should Read URL Edit Type and Text..so the User can Understand that there is an Input Text box.

#4678 Table dialog should provide empty value for width Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 General
Description

The table dialog sets a default width always. There is no way to allow the user to modify the other parameters of the table without setting an explicit width.

The table dialog should have a 'not set' value for the table width and this should be selected by default if the user is editing a table that has no width set.

#4679 Badly nested inline styles are not being preserved by the parser Bug Normal CKEditor 3.1 General
Description
  1. Load the following HTML in the editor:
<p>Line 1</p>
<b>
    <p>Line 2</p>
    <p>Line 3</p>
    <p>Line 4</p>
</b>
<p>Line 5</p>
  1. Switch to WYSIWYG and back to source

Expected output:

<p>
	Line 1</p>
<p>
	<b>Line 2</b></p>
<p>
	<b>Line 3</b></p>
<p>
	<b>Line 4</b></p>
<p>
	Line 5</p>

Current output:

<p>
	Line 1</p>
<p>
	<b>Line 2</b></p>
<p>
	Line 3</p>
<p>
	Line 4</p>
<p>
	Line 5</p>

This is a regression. It works well with the 3.0.1.

#4681 Can't block tab [9] keystroke Bug Normal General
Description

When using the config option "blockedKeystrokes" i can block several key strokes, but not the tab [9] key.

#4682 Content of any tag with width or height property is not editable in IE7 and IE8 Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.3 General
Description

When creating a div with width (in source mode), the content of the div is not editable in the WYSIWYG mode. Code for example:

<div style="width: 300px">
	<p>
		1234<br />
		5678</p>
</div>

Also checked on the Nightly build (current ver: 4483) Firefox doesn't seem to have this bug.

#4683 CKEDITOR.dom.element attribute containing " (double quotation mark) breaks basicWriter HTML output Garry Yao Bug Normal CKEditor 3.2 Core : Output Data
Description

Example:

element.setAttribute( 'onclick', 'document.location="/products/fa-3819";' );

Expected HTML output:

onclick="document.location=&quot;/products/fa-3819&quot;;"

Generated HTML output:

onclick="document.location="/products/fa-3819";"

(I use textarea replacement mode in my setup.)

DOM handling functions like setAttribute/getAttribute are expected to handle values as literals. All the required string processing should be made by the underlying framework.

I think the problem affects only CKEDITOR.htmlParser.basicWriter. CKEDITOR.dom.element and its setAttribute implementation has nothing to do with the problem.

See: /core/htmlparser/basicwriter.js Line 61-64:

		/**
		 * Writes an attribute. This function should be called after opening the
		 * tag with {@link #openTagClose}.
		 * @param {String} attName The attribute name.
		 * @param {String} attValue The attribute value.
		 * @example
		 * // Writes ' class="MyClass"'.
		 * writer.attribute( 'class', 'MyClass' );
		 */
		attribute : function( attName, attValue )
		{
			this._.output.push( ' ', attName, '="', attValue, '"' );
		},

Please add proper escaping for attributes. (CKEDITOR.tools.htmlEncode is not applicable since it leaves double quotes untouched in Firefox)

http://www.w3.org/TR/html4/charset.html#h-5.3.2
"Some authors use the character entity reference "&quot;" to encode instances of the double quote mark (") since that character may be used to delimit attribute values."

#4684 Cursor does not blink on new line when Enter key hit is done after applying background color. Bug Normal General
Description

Select some background color and write text. Now select <Enter key>.The

cursor blinks to few spaces on the right of the same line instead of going

to the new line. Now start writing text. The text starts correctly from the new line.

Is there a way that we can make cursor blink to the proper place (i.e. new

line) when <Enter key> is selected after applying background color.

#4685 Text color not set to Automatic when Automatic is selected. Garry Yao Bug Normal CKEditor 3.2 Core : Styles
Description
  1. Select some Text color. Write text.
  2. Select <Enter key> and select Text color as automatic.

The color is not changed to black.

Also sometimes it happens as follows:

Enter text on different lines by changing Text colors as specified in the text.

Red
Green
Orange
Blue
Brown
Automatic

When we select Automatic, it takes the color as Blue.(i.e the color which is there two lines above).

On click of automatic, I want to set the text color as black. Please provide the solution.

#4688 SCAYT affecting IsDirty and ResetIsDirty. Bug Normal CKEditor 3.3 UI : Spell Checker
Description

Using 2.6.5. Windows NT. FireFox 3.0.15.

There seems to be some kind of timing/race condition that causes ResetIsDirty to fail (or causes something else to come along later, after ResetIsDirty has been called, and flags the editor as "dirty") if 1) SCAYT is enabled and 2) there is at least one misspelled word somewhere within the editor text (highlighted with a red underline).

The specific scenario involves retrieving the editor contents (HTML) from a database and setting it into the editor via SetText. Obviously, I don't want this newly retrieved text to be considered "changed/dirty" (from the user's perspective) so within the OnAfterSetHTML handler I invoke ResetIsDirty. This works perfectly and reliably...UNLESS the conditions mentioned above are present. In the SCAYT scenario, the invocation of ResetIsDirty that occurs within OnAfterSetHTML seems to be ignored or something else comes along after it's invoked and marks the editor as dirty, perhaps as a result of the slight delay introduced by the spell check operation that eventually marks the incorrect word with the red underline. The end result is that the editor says it is Dirty even though no editing of the text has occurred.

Thank you.

#4689 Bold, Italic, Underline, Strikethrough lose focus after external javascript function call. Bug Normal General
Description

I have FCKEditor on my page along with other controls. I typed Some text

and applied Bold, Italic, Underline and Strikethrough formatting styles

on this text. Now I click on a html button present on the page.On click of this button a

javascipt alert message is called and the focus is back to the parent

page. Now in FCKEditor if I select the text and click on Bold or Italic or

Underline or Strikethrough, the formatting cannot be removed.

Please provide solution for the same asap.

#4690 htmlParser goes wrong with empty inline elements Frederico Caldeira Knabben Bug Normal CKEditor 3.1 Core : Output Data
Description

Having htmlParser deal with the following input:

<span><span></span>text</span>

With incorrectly yield:

text
#4691 Page Up/Down is not scrolling in IE Bug Normal General
Description

When pressing 'Page Up' or 'Page Down', it's noticed that while the actual cursor has been moved around, the scrollbar is not following the cursor.

#4692 CKPackager remove mandatory parenthsis Frederico Caldeira Knabben Bug Normal Project : CKPackager
Description

For the following codes

array.splice( ( length--, i-- ), 1 );

CKPackager will output into:

array.splice( length--, i--, 1 );
#4694 jQuery plugin does not work when trying to work with a textarea called by ajax Tobiasz Cudnik Bug Normal General
Description

I have a dialog box on my project and I'm getting the form template from a php page with jQuery.ajax and handling it with a self writed plugin. But ckeditor.jquery plugin does not work with it.

#4696 Insert Page break not splitting table and list Bug Normal General
Description

Reproducing Procedures

  1. Open a sample page, load the editor with the following content with selection:
    <ol>
    	<li>item1</li>
        <li>^item2</li>
    </ol>
    
  2. Click on 'Insert Page Break...' button.
  3. Switch to 'Source' mode.
  • Actual Result:
    <div style="page-break-after: always;">
    	<span style="display: none;">&nbsp;</span></div>
    <ol>
    	<li>
    		item1</li>
    	<li>
    		item2</li>
    </ol>
    
  • Expected Result:
    <ol>
    	<li>
    		item1</li>
    </ol>
    <div style="page-break-after: always;">
    	<span style="display: none;">&nbsp;</span></div>
    <ol>
    	<li>
    		item2</li>
    </ol>
    
#4697 Replace site New Feature Normal General
Description

Dear sir,madam.

I have one web site (www.centralrealestate.net) , which been made by a webmaster. After a while i change my hosting company, but now when i try to upload pictures from FCK editor, it takes pictures, but i cant see on my site. What is the problem? Can you help me please?

Ps:I want update FCKeditor to CKeditor but i dont know how to do. If u help me for this also, i will be so glad. Thank you,

Best regards, djbj

#4698 galeon should be treated like konqueror Bug Normal General
Description

I tried several versions of Galeon; they all keel over as soon as a Style or Format is used on a selected portion of text. It appears Galeon doesn't provide editing facilities.

user-agent strings of those I tested: a) Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.19) Gecko/20081216 Galeon/2.0.4 Firefox/2.0.0.19

b) Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.11) Gecko/20090612 Galeon/2.0.7

#4699 msie and safari problems Bug Normal General
Description

ckeditor with custom config [anything overriding defaults] fails in MSIE [6 to 8] and Safari [3 and 4]. I tried custom config file and inline changes such as shown in the 3.0 docs. even the tiny example

CKEDITOR.replace( 'editor1',
    {
        toolbar : 'Basic',
        uiColor : '#9AB8F3'
    });

from http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Setting_Configurations isn't accepted by those browsers. The same config changes are accepted by all Gecko based browsers [linux,os x, and win xp]. Galeon displays the right changes but crashes as soon as anything highlighted is changed - different bug report.

#4700 code/loader.js dependancy on env.js Bug Normal General
Description

It looks like the loader.js module depends on env.js... but env.js hasn't been loaded yet. See http://cksource.com/forums/viewtopic.php?f=6&t=16631.

For some reason this affects custom skins (take an existing skin, rename it, and try to load... editor fails to load because CKEDITOR.env.ie is undefined.

#4701 Update old links to the CKEditor web site Task Normal General
#4702 Removing text colour and background color in high contrast mode prevents focus to toolbar buttons after them. Garry Yao Bug Normal CKEditor 3.2 UI : Toolbar
Description
  1. Change the system visibility to high contrast mode.
  2. Open an instance of the editor.
  3. Access the toolbar by pressing ALT+F10.
  4. Observe that text colour and background colour menus are not displayed.
  5. Press tab until you reach the font size menu.
  6. Press tab again.

Observe that focus is now on the source button, not the maximize button as expected.

#4703 <br> instead off <p> Bug Normal General
Description

Hi Iam new to the FCK-editor. I got everything to work but I have <p> as default off CR. I want to have <br> and not <p> when I hit return. I try this code inside FCKConfig.js

FCKConfig.EnterMode = 'br' ; FCKConfig.ShiftEnterMode = 'p' ;

I still got <p>. How do I solve this? Please help. Best regards Stefan

#4704 Backspace in Source mode raises javascript error under IE8 Bug Normal General
Description
  1. Switch to Source mode
  2. Enter some text
  3. Press the backspace key

The following error occurs: Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8) Timestamp: Mon, 23 Nov 2009 20:38:02 UTC

Message: 'r.getSelection()' is null or not an object Line: 71 Char: 2262 Code: 0 URI: http://ckeditor.com/apps/ckeditor/3.0.1/ckeditor.js?1258978512

Note: this was reproduced using http://ckeditor.com/demo, the Custom Toolbar sample.

#4706 IE backspace error Bug Normal General
Description

IE crashes when user hits backspace in "Source mode"

http://cksource.com/forums/viewtopic.php?f=11&t=16645

#4707 CKEditor image Toolbar resubmits on click in IE 7 and FireFox 3.0.x Wiktor Walc Bug Normal CKEditor 3.1 General
Description

Hi,

When I click the image icon in CK Editor, the Image Properties

is displayed. The issue noted is:

1)The page url gets resubmitted in Firefox/3.0.15

2)An empty url gets submitted in IE7

On close of Image Properties an empty url gets submitted in IE7 and gets aborted.

This cause lot of issue as duplicate records get created and empty mails sent to the user.

I have searched google for the last two days but could not find any solution.

Any help in this regard is appreciated.

#4708 Missing configuration from pre-3.0: HtmlEncodeOutput Garry Yao New Feature Normal CKEditor 3.1 Core : Output Data
Description

It would appear that the 3.0.1 build does not contain a very important configuration for ASP.NET (and ASP.NET MVC) - the ability to encode the HTML prior to the form submission.

ASP.NET balks at any content being submitted that contains a < and a > with the message "A potentially dangerous Request.Form value was detected from the client"

This functionality was added in #1266 in a prior release.

It is possible to circumvent the issue with setting a "ValidateInput=false" setting however this is set either at the page level or the method level. Ideally this would be as granular as the field in question but those facilities do not exist at this time.

The ideal situation would be to have CKeditor pre-encode the content before submission to the server.

Workarounds available:

#4709 [IE6] Inconsistent scrollbar behavior Garry Yao Bug Normal CKEditor 3.1 General
Description

This issue does not occur if you don't click on the editing area before clicking on the scrollbar (e.g. switch from source to wysiwyg mode and click on a scrollbar).

Steps to reproduce:

  • open http://ckeditor.com/demo
  • copy the sample content in the editor and paste it at the bottom to have two copies in the editing area (just to have more content in the editor)
  • click on the first "Little Red Riding Hood" header at the very top
  • click on the scroll down arrow (or below the scrollbar)
  • result: the scrollbar jumps down and up and it is impossible to scroll down.
#4710 Spurious table at end of input after trimming whitespace around table Bug Normal General
Description

A spurious table appears at end of input after trimming whitespace around a table (one created with intention of being the only content within the editor). Extra lines can also appear before and after.

Reproducible: Always

Happens on ckeditor.com/demo: Yes

Tested browsers: Firefox 3.0.14/Lin, Internet Explorer 6-8/Win, Chromium 4.0.222.8 (28958)/Lin

Tested CK versions: 3.0, 3.0.1

Affects: All except maybe Chromium; See note in steps.

Workarounds: So long as the user is aware of this bug, in most cases it's possible to trim out the extra content and save it as-is, so long as editor is not re-rendered. However, the moment the content is edited again, extra lines will reappear.

Steps to reproduce:

  • Start with a blank editor or with data already present; Remove all text.
  • Add a table, the default 3x2 will do fine, and add text into each cell.
  • Select middle row, center the text. In Fx, this causes a strange (but temporary) rendering issue.
  • Rerender the editor (either via source/un-source or by saving/re-editing or what have you).
  • Note there's an extra line before the table. Remove it. In IE, the line itself refuses to go away. In Chromium, you would have to ADD the line before this bug happens.
  • View the source; There is now a blank, invisible table at the end of the HTML source (In IE7, there's also a bunch of other cruft). There's also a blank line before the table again.

(Some steps may be spurious, but these make it happen all the time. I've had it happen just placing the table and removing the extra line that happens right then.)

This does not seem to occur (at least in Fx3) if the configuration is modified as follows:

config.enterMode = CKEDITOR.ENTER_BR;

config.shiftEnterMode = CKEDITOR.ENTER_P;

However, the extra <br> below the table can never be removed in this configuration.

This table is a problem due to other renderers (e.g. Word) seeing it and displaying it, particularly if the original table's attributes (such as border colour) were changed.

#4711 entering text after a newline within pre-tags Garry Yao Bug Normal CKEditor 3.3 UI : Enter Key
Description
  1. use this piece of code:
<pre>Hello world!
Bla, bla, bla
</pre>
  1. make two or three newlines between the first and second row
  2. go to the first/second created line and type some text

The cursor jumps to the next row and the text is to be printed.

#4713 Japanese Translation path Bug Normal CKEditor 3.1 UI : Language
Description

Some Japanese translation is not proper. The attachement is the patch. Please check it.

#4714 JavaScript error when we edit Flash Property Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

When we edit Flash property with Internet Explore, we get JavaScript error.

  1. Insert Flash into CKEditor.
  2. Open Flash Property Editor.
  3. Submit it. We got error.

The attached is the patch to fix this propblem.

#4715 Image dialog requests HTML page Bug Normal UI : Dialogs
Description

Steps to reproduce:

  • Launch some tool to trace HTTP requests.
  • Open http://example.com/ckeditor/_samples/replacebyclass.html (or any other page with CKEditor).
  • Open image dialog.

Requested files:

  • http://example.com/ckeditor/_samples/ <- this one should not be requested at all
  • http://example.com/ckeditor/skins/kama/dialog.css?t=99GE
  • http://example.com/ckeditor/skins/kama/images/mini.gif

Confirmed at least on IE8.

#4716 [IE7] Cursor remains in editor when you tab to following form button. Garry Yao Bug Normal CKEditor 3.3 General
Description

If the editor is the last component in a form and you tab out to apply focus to a button the cursor remains visible. If you enter text it will go into the editor at the cursor. If you press Enter the button, which has focus, will be pressed.

Insert an input field after the editor and before the button. Tab from the editor to the input field. The cursor is moved from the editor to the input field as normal.

#4717 Remove Link and Outdent buttons should be disabled before editor gets focus Garry Yao Bug Normal CKEditor 3.3 UI : Toolbar
Description

When an editor instance gets created the Remove Link and Outdent buttons are enabled. When the editor first gets focus these buttons are disabled if they do not apply to the current text. The buttons should be initially disabled by default, and then, when the editor gets focus, only enabled if they apply to the current text.

#4718 [FF] Editor not recieving response from server when drop-down menus are used. Bug Normal General
Description
  1. Clear the cache in Firefox.
  2. From the nightly demo server, load the Replace By Class sample.
  3. Apply the Blue Title style from the Styles drop-down menu.

Observe "Transferring data from nightly.ckeditor.com" in the status bar. You have to refresh the page to stop the requests. Using FireBug you can see a number of requests are waiting for a response or queued.

#4719 IE does not escape attribute values properly Minh Nguyen Bug Normal CKEditor 3.3 General
Description

reproduce: (in WYSIWYG mode)

editorObj.setData('<a href="#" x="&lt;a b=&quot;c&quot;/&gt;">a</a>')

In IE you will see: " _cke_saved_href="#">a

source code:

<a href="http://localhost/t/backend/#" x="<a b=">&quot; _cke_saved_href=&quot;#&quot;&gt;a</a>

instead of: a

source code:

<a href="#" x="&lt;a b=&quot;c&quot;/&gt;">a</a>
#4720 CKEDITOR.dom.element.createFromHtml fails on style element in IE Bug Normal General
Description

CKEDITOR.dom.element.createFromHtml fails to create style elements in IE. I've tested in IE6 and IE8; Safari and Firefox worked as expected.

The following code throws an error because the temp div does not contain any HTML after the call to .setHtml() in .createFromHtml():

CKEDITOR.dom.element.createFromHtml( '<style type="text/css">p { color: green; }</style>');
#4721 Checkbox "value" cannot be removed Minh Nguyen Bug Normal CKEditor 3.3 UI : Dialogs
Description
  1. Load the following HTML:
<p><input type="checkbox" value="My Value" /></p>
  1. With IE, right-click the checkbox and open the properties dialog.
  2. Delete the value field and confirm the dialog.
  3. Go to source.

The "value" attribute should disappear, but it's still there, with the original value.

It works well when changing the value instead.

#4722 cannot click toolbar Bug Normal General
Description

I cannot click the toolbar on the demo site.

  1. click image and select.
  2. scroll down .
  3. then I tried to click toolbar, but we cannot select.

I tried by all IE series and reproduced this. Firefox worked well.

#4723 [IE] selection is unhighlighted by right-click Bug Normal General
Description

Procedure

  1. select some word.
  2. right click.

then the selected area is unhighlighted. Firefox worked well and this issue is only on IE.

#4724 [IE8] Create link hypertext Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 General
Description

(sorry for my english level)

Using IE8 ,in the window for create link, if i paste "http://www.google.com" with right click mouse, and i valid with mouse. The link src contain two "http://"

#4725 hitting return after html comment produces an error "t.getName is not a function" Garry Yao Bug Normal CKEditor 3.1 UI : Enter Key
Description

hi,

when a paragraph ends in an html comment, hitting the enter key with the cursor positioned at the end of this paragraph (to create a new paragraph) throws an error "t.getName is not a function" (line 29 ckeditor.js).

<p>Any old para.<!-- any old comment --></p>

Windows Vista SP2 FF 3.5.5

#4726 having a submit button with name="submit" in the same form causes error IE7 Bug Normal General
Description

if you have a submit button with the name="submit" in the same form that you use the editor in, it throws a javascript error in IE7

line 22 ckeditor.js "object doesn't support this property or method.

i tracked it down to this bit of code in line 22

if(!z.$.submit.nodeName) {
	z.$.submit=e.override(z.$.submit,function(B) {
		return function() {
			x.updateElement();
			if(B.apply) {
				B.apply(this,arguments);
			} else {
				B();
			}
		};
	});
}

Windows Vista SP2 IE7

this does not happen in FF 3.5.5

(i was unable to test in nightly build, because unfort i don't know svn)

#4727 Switch off email encode Bug Normal General
Description

Hi

We recently upraded to DNN 4.9.5 and now find that when users add an email link that this causes a page error. I found a post on the DNN forums with other users having same problem. So I added:

FCKConfig.EMailProtection = 'none' ; // none | encode | function
FCKConfig.EMailProtectionFunction = 'mt(NAME,DOMAIN,SUBJECT,BODY)' ;

to the fckconfig.js in the custom dir. But the encoding is not turned off.

Can you help? I'm not the only one having this problem.

I'm not sure how to check which version we have but it must be the one released with DNN 4.9.5 I guess.

Is there an upgrade?

thanks Gus

#4728 Bug: Predefined content gone on refresh (F5) in firefox Bug Normal General
Description

happens to me only in firefox. when there is content in the textarea and the CK editor loads, it is the fine the first time. Then when pressing refresh, like F5, or the button in the toolbar, the content is gone. white space.

when loading the page by default (not clicking refresh) it reappears again.

also, when the content is gone, you can click source and source again to switch back and the content is back again!

this bug is also present on the demo CKeditor on your frontpage...

#4729 Support fakeobjects for comments Frederico Caldeira Knabben New Feature Normal CKEditor 3.1 General
Description

Currently, it's not possible to replace HTML comments with fake elements. We should provide support for it.

#4730 Shared toolbar for multiple editing areas New Feature Normal UI : Toolbar
Description

We would like to use new CFKEditor for our Kentico CMS system. Today FCKEditor supports shared toolbar for multiple editing areas. This is "have to" in CKEditor feature for us, without this support we can't migrate.

Michal Neuwirth Product Manager Kentico Software

#4731 clipboard plugin missing required dependency Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 Core : Pasting
Description

The clipboard plugin requires the dialog plugin, but does not list it as a dependency.

#4732 More Colors Button Unresponsive in colorbutton plugin. Bug Normal UI : Dialogs
Description

If you enable the "more button" in the color picker it shows up.

But it is unresponsive. Clicking it does nothing.

#4734 [IE8] Font size resets when font name is changed in an empty numbered list. Garry Yao Bug Normal CKEditor 3.3 Core : Lists
Description

Use IE8 with compatibility mode off.

  1. Open the Ajax sample and click the "Create Editor" button.
  2. Tab into the editor content area.
  3. Click the Numbered List button to start a list (leave it empty).
  4. Select a font size.
  5. Select a font family.

Observe that the font size field resets to "Size"

#4735 Table without border is invisible Bug Normal Core : Styles
Description

Create table with border = 0, click outside of editor area. Table is not visible at all.

Adding this (from fckeditor 2.x) to contents.css should fix this.

table[border="0"],
table[border="0"] > tr > td, table[border="0"] > tr > th,
table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th,
table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th,
table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th
{
	border: #d3d3d3 1px dotted ;
}

/* For tables with no "border" attribute set */
table:not([border]),
table:not([border]) > tr > td, table:not([border]) > tr > th,
table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th,
table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th,
table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th
{
	border: #d3d3d3 1px dotted ;
}

#4736 Page Up/Down keys in wysiwyg not working well Garry Yao Bug Normal CKEditor 3.1 General
Description

Environment

WinXP, affected all IE versions, with the following config:

config.docType = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';

Reproducing Procedures

  1. Open a sample page with contents long enough to appear the scrollbar.
  2. Put cursor at the beginning of document and press 'PageDown' key.
  • Actual Result: Though the selection is changed, the scrollbar is not moved a bit at all.
  • Expected Result: The cursor's scrolling into the desired position.
#4737 [IE] Only clicking the first line allows the cursor to be placed within the content area. Bug Normal General
Description
  1. Using IE, open the Ajax sample.
  2. Click the Create Editor button.
  3. Click the middle of the content area.

Observe that the cursor is not present.

If you click the first line the cursor will appear. If you use the tab keys or minimize and restore the browser window to cursor is placed in the content area.

#4738 Inserting table inside bold/italic/underline generates error on ENTER_BR mode Garry Yao Bug Normal CKEditor 3.1 General
Description

It happens on IE and FF. Chrome seems to work fine. It seems to happen when the breadcrumb points 'body strong', and NOT happen when 'body p strong'.

steps to reproduce

  • Edit config.js to enable ENTER_BR mode.
    config.enterMode = CKEDITOR.ENTER_BR;
    
  • Open any sample page.
  • Goto source mode, and remove all texts.
  • Back to WYSIWYG mode, type some text.
  • Click B/I/U icon from toolbar.
  • Click Table icon from toolbar.
  • Press OK.
  • Then, javascript error occurs at elements.js(l.201), and typed text will cleared.
    • Error says: 'this.$ is null or not an object' (translated)
#4740 CKLangTool does not recognize entries in single quotes Bug Normal General
Description

As the title says. CKLangTool does not recognize properly entries in single quotes, like for example:

	colors :
	{
		'000' : 'Schwarz',
		'800000' : 'Kastanienbraun',
		'8B4513' : 'Braun',
		'2F4F4F' : 'Dunkles Schiefergrau',
		'008080' : 'Blaugrün',
	...

such entries are replaced with english words.

This issue will be fixed in #3698, because a new way of loading/parsing files will be introduced there.

#4741 FCKEditor Image/Flash uploading Bug Normal Server : ASP.Net
Description

I am not able to upload images (not even flash). The editor does not move ahead. I have downloaded the demo version of ASP.NET.

Kindly treat this as urgent.

Regards, Deepali

#4742 IE: Extra paragraphs on click Bug Normal General
Description
  1. Load the following HTML:
<p>Top</p>
<table align="left" border="1" style="width: 200px">
	<tr>
		<td>Test</td>
	</tr>
</table>
<p>Bottom</p>
  1. Click to put the caret in the "Top" paragraph.
  1. Click at the white-space at the right of the table.

An empty paragraph will be appended after the table.

This issue doesn't happen if the "align" attribute is not issue. The same problem can be verified when the alignment is to the right.

This issue can be easily verified in our online demo.

#4743 Dialog plugin contains a call to console.log Bug Normal CKEditor 3.1 UI : Dialogs
Description

The dialog plugin currently logs to the console if a dialog cannot be loaded.

#4744 Editing link with empty href causes a new link to be created and inserted into the existing anchor Bug Normal General
Description

Editing link with empty href causes a new link to be created and inserted into the existing anchor

Start with the following source.

<p><a href=""><span>Sample Text</span></a></p>
  • Edit the link.
  • Enter a URL.
  • Click OK.

Result:

<p><a href=""><span>Samp<a href="http://google.com">http://google.com</a>le Text</span></a></p>

#4745 Editor doesn't handle empty anchor tags properly Bug Normal General
Description

Sample source with empty anchor:

<div>
  <a name="foo"/>
  Some Text <br />
  <ol>
    <li> Item One </li>
    <li> Item Two </li>
  </ol>
</div>

Becomes

<div>
	<a name="foo"> Some Text <br />
	</a>
	<ol>
		<li>
			<a name="foo">Item One </a></li>
		<li>
			<a name="foo">Item Two </a></li>
	</ol>
</div>
<p>
	<a name="foo"></a></p>

#4746 insertHtml left trim text Bug Normal CKEditor 3.4.3 General
Description

Reproducing Procedures

  1. Open the 'api' sample page, load the editor with the following content and selection.
    some^text
    
  2. Load the insertion area with the following content:
     insertion 
    
  3. Click on 'Insert HTML' button.
  4. Switch to 'Source' mode.
  • Actual Result:
    <p>
    	someinsertion text</p>
    
  • Expected Result:
    <p>
    	some insertion text</p>
    

Note that the left side whitespace has been trimmed, which is wrong.

#4747 Buttons don't work with no text selected in safari Bug Normal Core : Styles
Description

Bold, Italic, Underline and many other buttons don't with no text selected.

Expected behavior is that when these buttons are pressed with no text selected they should become depressed and text entered afterward should be styled accordingly. Instead the only way to make something bold is to type the text, highlight said text, and click the bold button.

#4748 webkit: buttons inside the dialogs are right aligned Garry Yao Bug Normal CKEditor 3.2 UI : Dialogs
Description

Load for example the upload tab in the image dialog, the "send to server" button is at the right side in Safari and Chrome.

This is due to the float:right rule added in #3639

#4749 Image dialog fails when img wrapped by div and using context menu (on ie) Bug Normal UI : Context Menu
Description

For the following html source code:

<div class="XXX" style="width:100px;height:100px">
<img src="some_url" />
</div>

when right click on img element and use the context menu to access the image dialog, the dialog cannot load the attributes original image and the page scroll to the top. However, accessing the dialog by clicking the toolbar image button will run as expected, with all attribute correctly loaded and no page scroll to the top. Strange enough, the problem will not occur if the width and height styles are removed from style.

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