Custom Query
Results (4501 - 4600 of 11754)
| Ticket | Summary | Owner | Type | Priority | Milestone | Component |
|---|---|---|---|---|---|---|
| #4750 | OK & Cancel buttons in dialog doesn't follow the OS guidelines | 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:
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', {
}); 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 | 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 | 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 | 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 Steps to reproducePaste the following text in soruce mode: TEST1 TESTESTTEST T1<br /> TEST2 TESTESTTEST T2<br /> TEST3 TESTESTTEST T3<br />
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 | 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 | New Feature | Normal | General | ||
| Description |
In ColdFusion there are already functions like:
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 | 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 | 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 |
http://nightly.ckeditor.com/4675/_samples/skins.html
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' | Bug | Normal | CKEditor 3.2 | Core : Styles | |
| Description |
To Reproduce:
-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 | 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 |
EnvironmentWinXP, IE8 Browser Mode, IE8 Document Mode Reproducing Procedures
|
|||||
| #4776 | Preview page fails to open with relative URL on link in IE | Bug | Normal | CKEditor 3.1 | General | |
| Description |
EnvironmentWinXP, IE8 Standards Mode. Reproducing Procedures
|
|||||
| #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 | 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 |
|||||
| #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 | Bug | Normal | CKEditor 3.1 | General | |
| Description |
Reproducing Procedures
|
|||||
| #4782 | Inconsistent context menu item height in IE Quirks | Bug | Normal | UI : Context Menu | ||
| Description |
EnvironmentWinXP, IE8 Quirks Mode. Reproducing Procedures
|
|||||
| #4783 | Page break for print cause horizontal scrollbar in IE quirks | Bug | Normal | CKEditor 3.3 | General | |
| Description |
EnvironmentWinXP, IE quirks. Reproducing Procedures
|
|||||
| #4784 | Incorrect cursor position after delete table cells | Bug | Normal | CKEditor 3.3 | General | |
| Description |
Reproducing Procedures
|
|||||
| #4786 | Changing paragraph format doesn't work in some situations | Bug | Normal | CKEditor 3.1 | General | |
| Description |
This is a regression bug, works in CKEditor 3.0.1. Steps to reproduce:
|
|||||
| #4787 | Unable to undo after insert page break for print in IE | Bug | Normal | CKEditor 3.2 | Core : Undo & Redo | |
| Description |
Reproducing Procedures
|
|||||
| #4788 | Unable put cursor after the last image in IE | Bug | Normal | General | ||
| Description |
Reproducing Procedures
|
|||||
| #4789 | [Safari] Changing image properties produces lots of duplicated styles | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
| Description |
Steps to reproduce:
This bug probably has been introduced in #4246. |
|||||
| #4790 | CKEditor in enterMode = BR, problem with bullet list | 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).
|
|||||
| #4791 | Problem with moving focus to a form element | Bug | Normal | CKEditor 3.3 | General | |
| Description |
Problem exists at least in FF 3.5.5. Steps to reproduce
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:
|
|||||
| #4793 | SCAYT causing lots of duplicate tags | Bug | Normal | CKEditor 3.3 | General | |
| Description |
Confirmed in IE8. Steps to reproduce:
|
|||||
| #4794 | Cannot remove format from selected text when SCAYT is enabled | Bug | Normal | CKEditor 3.3 | General | |
| Description |
Steps to reproduce:
|
|||||
| #4795 | [IE] Deleting focused horizontal line/table by DEL key generates javascript error | Bug | Normal | CKEditor 3.2 | General | |
| Description |
To Reproduce
|
|||||
| #4796 | Flash objects are output incorrectly | Bug | Normal | Core : Output Data | ||
| Description |
Reproducing Procedures
|
|||||
| #4797 | Opera: using enter key in dialogs triggers javascript error | Bug | Normal | CKEditor 3.3 | General | |
| Description |
When pressing enter in the dialog, an error occurs Steps to reproduce (1)
|
|||||
| #4798 | Opera: using tab key makes input fields undeitable | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
| Description |
This is a regression bug. Steps to reproduce
|
|||||
| #4799 | SCAYT interferes on collapsed selection styling | Bug | Normal | CKEditor 3.3 | UI : Spell Checker | |
| Description |
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
|
|||||
| #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
|
|||||
| #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
|
|||||
| #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 | 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
|
|||||
| #4810 | Text change request for image properties dialog preview label | 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 | 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:
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:
<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>
|
|||||
| #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
|
|||||
| #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% | 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 | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
| Description |
To Reproduce
|
|||||
| #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/> " at the very first in <td> breaks the editor | Bug | Normal | CKEditor 3.2 | UI : Source View | |
| Description |
To Reproduce
|
|||||
| #4825 | Browser context menu is opened when clicking right mouse button twice | 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 FCKeditor I'm having this problem only in Opera. |
|||||
| #4826 | Context menu doesn't work sometimes | 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 reproduceUsing Safari 4.0.4 @ Win (XP/SP3 in my case)
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 | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
| Description |
Environment3.1.x branch Reproducing Procedures
|
|||||
| #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 | Bug | Normal | CKEditor 3.3 | Core : Styles | |
| Description |
To reproduce the defect:
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 | Bug | Normal | CKEditor 3.3 | General | |
| Description |
To reproduce:
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
<table> <tbody> <tr> <td> TD</td> </tr> </tbody> </table>
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
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 | 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 | 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):
|
|||||
| #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
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:
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 | 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
|
|||||
| #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 ( Tested on Opera 10.10 (build 1893) @ XP/SP3. Does not happen when using Shift+F10. Steps to reproduce
Each time you repeat all steps, another empty paragraph is added. |
|||||
| #4848 | IE: cannot type anything altghough cursor is blinking in the editing area | 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
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
|
|||||
| #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. |
|||||
| #4851 | IE : Delete table rows may throw a js error | Bug | Normal | CKEditor 3.2 | General | |
| Description |
<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>
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 | 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 | Bug | Normal | CKEditor 3.1 | General | |
| Description |
Steps to reproduce
This is a regression bug introduced in [3779]. |
|||||
| #4857 | Flash dialog - undefined values in "Properties" -> "Align" | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
| Description |
To reproduce:
|
|||||
