Custom Query
Results (3601 - 3700 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#3651 | Setting height of editor is broken in IE8 Standards Mode | Bug | Normal | FCKeditor 2.6.5 | General | |
Description |
Environment: MS Vista (also XP vm), Internet Explorer 8 Standards Mode Issue: Setting the height of the editor from JavaScript does not work in Internet Explorer 8 Standards Mode. Standards mode computes 100% height a little differently to other other browsers, and therefore doesn't make full use of the available space. Sample: <html> <head> <script type="text/javascript" src="/html/includes/fckeditor/fckeditor.js"></script> <script type="text/javascript"> function init(){ var fckEditorObj = new FCKeditor('details'); fckEditorObj.BasePath = "/html/includes/fckeditor/"; fckEditorObj.Height = "600px"; fckEditorObj.ReplaceTextarea(); } </script> <style type="text/css"> div.fckHolder { height:600px; width:800px; background-color:gray; border:2px solid red; } </style> </head> <body onload="init()"> <div class="fckHolder"> <textarea id="details"></textarea> </div> </body> </html> The above code should set the editor height to 600px, however you'll notice that the iframe ("detailsFrame" in this case) sets itself to 600px (you cant see the gray background of the div) while the editable text area stays on the default 200px. The fix i would think is the body within the "detailsFrame" iframe needs to be given a specified height other than the 100%. Please advise of the solution Thanks in advance, Michael |
|||||
#3652 | Styles combobox drop down content is blank for the second editor on the page | Bug | Normal | General | ||
Description |
*Steps to reproduce -Add two editors into the page; -Open Styles menu in one of them; -Try to open Styles menu at the another; -Note that drop down is blank for the second editor. |
|||||
#3653 | Collapse toolbar isn't working in Source mode | Bug | Normal | CKEditor 3.0 | UI : Toolbar | |
Description |
To reproduce:
This problem was originally reported by Garry. |
|||||
#3654 | Resize handle should not be useable in maximized mode. | Bug | Normal | CKEditor 3.0 | General | |
Description |
To reproduce:
This problem was originally reported by Garry. |
|||||
#3655 | [IE] Toolbar button cursor flicker between 'hand' and 'default' | Bug | Normal | CKEditor 3.0 | UI : Toolbar | |
Description |
When you mouseover any of the toolbar buttons, you'll find default cursor type on the button center, and pointer/hand type on the edge, result in a very noisy experience. |
|||||
#3656 | CKEDITOR.dom.range::trim() is destroying text ranges. | Bug | Normal | CKEditor 3.0 | General | |
Description |
To reproduce:
|
|||||
#3658 | [IE6] Editor document has horizontal scrollbar on long lines | Bug | Normal | CKEditor 3.0 | General | |
Description |
Open the attached sample page for reproducing. |
|||||
#3660 | Add separate NAME parameter in taglib | New Feature | Normal | FCKeditor.Java 2.6 | Server : Java | |
Description |
Add the ability to create a NAME parameter in the FCKEditor Taglib in addition to the instanceName (which is the ID and NAME currently). I am attaching the patches for the TLD and the 2 java files that need modofication for this feature. Reference Topic: [http://www.fckeditor.net/forums/viewtopic.php?f=5&t=14048&p=36740#p36740 ] |
|||||
#3661 | Safari 3.2 cache issue | Bug | Normal | CKEditor 3.0 | General | |
Description |
To reproduce:
At this point, the editor will not load until the page is reloaded. This error does not appear when cache is disabled in the browser |
|||||
#3662 | There needs to be a way to reset the undo stack | Bug | Normal | CKEditor 3.0 | General | |
Description |
A mechanism is required to reset the undo buffer. When the editor is created with an initial set of data it is desirable to reset the undo buffer so that the user does not undo the initial setData() result. |
|||||
#3664 | Insert table in empty document add extra line | Bug | Normal | CKEditor 3.1 | Core : Styles | |
Description |
Reproducing Procedures
|
|||||
#3665 | [IE] Output source code has extra | Bug | Normal | CKEditor 3.0 | Core : Output Data | |
Description |
Reproducing Procedures
|
|||||
#3669 | [IE8] wysiwyg area shrink when toolbar collapsed | Bug | Normal | CKEditor 3.0 | UI : Toolbar | |
Description |
Reproducing Procedures
|
|||||
#3670 | Investigate methods to update JAWS' virtual cursor automatically | Task | Normal | CKEditor 3.0 | Accessibility | |
Description |
CKEditor 3 at its current state is often requiring the user to press Insert+Escape to update the virtual cursor with no warning - users can only know that it's needed by reading our user's guide. But it's not common for users to have read the whole user's guide before using our editor. While I was reading up on accessibility issues surrounding web applications this morning, I found someone has documented a way to update JAWS' virtual cursor automatically. The method looks simple. If it works, it should be included into v3.0. |
|||||
#3671 | Inserting Page break is introducing new paragraph | Bug | Normal | CKEditor 3.0 | Core : Styles | |
Description |
Reproducing Procedures
|
|||||
#3672 | [IE] Dialogs flicker when displaying | Bug | Normal | CKEditor 3.0 | General | |
Description |
When dialogs are opened for the first time, they load and display correctly. On subsequent invocations of a dialog, the whole window is blanked out while the dialog displays. The worst case seems to be on IE6; the delay can last more than a second, while the whole window remains blank. The effect seems more pronounced when the editor is embedded within a larger application, but is still noticeable in the samples. |
|||||
#3673 | Add file browser support to CKEditor | New Feature | Normal | CKEditor 3.0 | File Browser | |
Description |
To do: create a plugin that makes it possible to integrate any file browser in CKEditor (it will not provide any file browser solution). |
|||||
#3674 | [FF3] resetDirty() not working after initial load | Bug | Normal | CKEditor 3.0 | General | |
Description |
When calling resetDirty() after setData() the editor's checkDirty() function returns true. The expected result is that the dirty flag is reset after setting data. FF3 is the only browser this happens in. Example call: editor = CKEDITOR.appendTo( 'div1', { on : { instanceReady : function( ev ) { ev.editor.setData( '<div><h1>This is some sample data</h1></div>' ); ev.editor.resetDirty(); } } }); Test file attached. |
|||||
#3675 | CKEditor - languagefile german complete | New Feature | Normal | CKEditor 3.0 | General | |
Description |
hello i completed the german language file (_source/lang/de.js) |
|||||
#3677 | Image inside floating div cannot be linked, looses focus on IE7 | Bug | Normal | FCKeditor 2.6.5 | General | |
Description |
Add an image inside a floating div: <div style="float: right"><img src="..." /></div> If you select the image and press the Add Link button, the link (<a>) is positioned at the beggining of the editor content as text and not at the image. Alternatively, if you select the image and try to enter a link from the Link tab of Image Properties dialog, you get Javascript errors in IE7:
Line 82: 'undefined' is null or not an object Line 789: Object doesn't support this property or method It seems that line 256 of fck_image.js: ( oLink = oEditor.FCK.CreateLink( sLnkUrl )[0] ; ) does not return an object. The cause is that the editor looses selection when CreateLink is called inside a floating image. If you edit an existing link with image, all is OK. This bug is related to ticket #798 which is resolved in FCKEditor 2.6.4 |
|||||
#3678 | [IE] Edit image link result incorrect inside floated div | Bug | Normal | CKEditor 3.2 | UI : Context Menu | |
Description |
|
|||||
#3679 | [IE8] element.html test fails in various places | Bug | Normal | CKEditor 3.0 | General | |
Description |
Depending on chosen mode on IE8, element.html test fails in various places. This patch seems to fix it, but it uses too many workarounds and need to be rewritten. It should use less workarounds as possible, mostly on IE8 strict. |
|||||
#3680 | [webkit] Dialogs doesn't fire focus | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
Description |
On webkit (Google Chrome), after showing the dialog, focus event isn't triggered. Reproduce
|
|||||
#3684 | Edit area adding <p> when clicking in the edit area | Bug | Normal | CKEditor 3.0 | General | |
Description |
To reproduce:
Results in a new <p> being added to the document. The document grows with every subsequent click. <p> </p> Reproduced on IE 6 and 7. |
|||||
#3685 | Update to scayt plugin | Bug | Normal | CKEditor 3.0 | UI : Spell Checker | |
Description |
SCAYT settings passing method changed - from particular field to the key/value pairs object |
|||||
#3686 | [IE] Cell properties RTL dialog layout problems | Bug | Normal | CKEditor 3.0 | UI : Dialogs | |
Description |
The cell properties dialog does not display well in RTL mode.
IE only. See attached example. |
|||||
#3687 | Suggestion: Replace Format, Font, Size dropdowns with an image. | New Feature | Normal | General | ||
Description |
Dear CKEditor Team, It's marvelous how an editor with as much feature as CKEditor has can load so amazingly fast, great work! Just to add my 2 cents to make the editor look even nicer, I'd suggest that to replace the dropdowns of Format, Font, Size, Styles to images like the rest of the buttons on the toolbar. Much like the editor used for Gmail if you want a live example of what I'm saying. Here are my reasons,
I love this editor so much that I just want to give my 2 cents! Thank you, Ray Fan. |
|||||
#3689 | Unneeded unicode character found in English translation files | Bug | Normal | CKEditor 3.0 | General | |
Description |
L670 of en.js says toolbar : 'Link\u200b', // IE6 BUG: A title called "Link" in an <A> tag would invalidate its padding!! The \u200b character is no longer needed - the issue it was meant to fix was fixed in #2952. Now it is appearing as an extra space in some browsers. |
|||||
#3690 | Selection is lost after Enable SCAYT | Bug | Normal | CKEditor 3.0 | General | |
Description |
Reproducing Procedures
|
|||||
#3691 | Undo snapshot after select-and-type | Bug | Normal | Core : Undo & Redo | ||
Description |
Make undo snapshot after select-and-type. Derived from #3372. TC
|
|||||
#3692 | Find scrollIntoView incorrect | Bug | Normal | CKEditor 3.0 | Core : Styles | |
Description |
Reproducing Procedures
|
|||||
#3693 | dom.element.getAttribute returns unnormalized style properties | Bug | Normal | CKEditor 3.0 | General | |
Description |
In some cases IE8 and webkit returns uppercases css properties after getAttribute('style'). To prevent this, place for browser-wide code should be introduced to this method and there the css normalization could be done. |
|||||
#3694 | Find a better way for fixing blank CKEditor issue in IE6,7 | Task | Normal | General | ||
Description |
CKEditor is occasionally appearing blank in IE6 and 7. That issue has been fixed in #3623 with a hack. But a better way may be found. This ticket aims to find out the reason why the bug is happening in IE6 and 7 vs. high latency servers, and hope to find a better fix for it without using setTimeout() hacks. |
|||||
#3696 | [IE6] Disabled buttons loosing position on hover | Bug | Normal | CKEditor 3.0 | General | |
Description |
In kama skin, mouse over a disabled button results in position lost by the button (due to padding and height). This is also noticeable when switching to source view (in time when button is disabled during reload). |
|||||
#3697 | CKLangTool should be launched automatically before releasing | Task | Normal | CKEditor 3.1 | Project : CKPackager | |
Description |
the title says it all - in patches usually just the "en" language entry is added and this way CKEditor is broken in all other languages. |
|||||
#3698 | CKLangTool should sort language entries | New Feature | Normal | Project : CKPackager | ||
Description |
(as the title says) |
|||||
#3700 | Preview plugin is broken | Bug | Normal | CKEditor 3.0 | General | |
Description |
There are typos issues in preview plugin, making it unusable. Attached patch fixes them. |
|||||
#3702 | UI Color plugin is broken in release version | Bug | Normal | CKEditor 3.0 | General | |
Description |
UI Color plugin is broken in release version. TCSample from nightly: http://nightly.ckeditor.com/3658/_samples/ui_color.html Second editor should be blue and UI Color plugin button should work. |
|||||
#3703 | editor.insertHtml cause error | Bug | Normal | CKEditor 3.0 | General | |
Description |
Reproducing Procedures
|
|||||
#3704 | "Unspecified Error" in Javascript | Bug | Normal | Core : Styles | ||
Description |
While i am trying to select more than one cell in table and apply the pre-loaded styles. Its throwing a javascript error like "Unspecified Error". But at the same, when i try to check in your demo site, there it didnt throw any error ans the styles applied perfectly. Can you please guide me, where i can check for the particular files to overcome this error. |
|||||
#3705 | Kama: The context menu has wrong background color for the icons | Bug | Normal | CKEditor 3.0 | General | |
Description |
With the default UI color, when opening a menu, the background for the menu item icons is wrong. It's uses the v2 colors instead of the default gray one. |
|||||
#3706 | High Contrast - Color picker doesn't display colored options | Bug | Normal | CKEditor 3.0 | General | |
Description |
When using high contrast mode, the color pickers lose their background color (which is normal behavior in HC), but there is no alternative way to "see" the colors. Users using HC should still be able to choose their desired color without needing to refer to textual tool-tips. |
|||||
#3707 | [webkit] editor.insertHtml not supported | Bug | Normal | CKEditor 3.0 | General | |
Description |
Currently we're currently rely on native document.insertHtml, but actually Webkit is not supporting this feature, check quirksmode test page. |
|||||
#3709 | Selected text stays selected when switch to source view and back | New Feature | Normal | General | ||
Description |
Hello. To me FCKeditor is almost perfect. The only thing I miss from Dreamweaver is selection preservation while switching to source view. Since I work with very big html files it is very difficult to find any specific place in code. When I select a word (or sentence or picture or table cell) in WYSIWYG mode in Dreamveawer and then switch to source view I find myself in the middle of the (pages of the) code with the same text selected. If FCKeditor could do that - it would save very much worktime. But FCKeditor resets the cursor location to start of the source. |
|||||
#3711 | EMBED is outdated for flash | Bug | Normal | CKEditor 3.0 | General | |
Description |
When embedding a flash object FCKeditor is currently using an <EMBED> tag. This is not valid XHTML. Better use the object type like: <object type="application/x-shockwave-flash" style="width:XXXpx; height:YYYpx ;" data="http://your.domain.com/your_flash_file.swf"> <param name="movie" value="http://your.domain.com/your_fla sh_file.swf" /> </object> |
|||||
#3712 | Cant Apply styles in Tables | Bug | Normal | General | ||
Description |
When we select two cells and apply styles in a table. its throwing an "Unspecified Error". Please support on this. |
|||||
#3713 | Image file name lost on enabling / disabling Wiki FCKEditior | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Using the Wiki FCKEditor 2.6.4, it will loose the name of the file used in an [[Image:]] Steps to reproduce: 1)Open an existing page with an [[Image:]], i.e. [[Image:xyz.jpg]] 2)Click '[Rich Editor]' to enable FCKEditor 3)Click '[Disable rich editor]' to disable FCKEditor 4)The [[Image:xyz.jpg]] will now read [[Image:]] Additional Information: Tested on install from www.turnkeylinux.org/appliances/mediawiki |
|||||
#3716 | Context menu disappears after displaying one submenu | Bug | Normal | CKEditor 3.0 | General | |
Description |
Same issue as reported in #3566 Browser: IE7 OS: Vista |
|||||
#3717 | config.dialog_backgroundCoverColor does not work in IE7 or IE8 | Bug | Normal | CKEditor 3.1 | UI : Dialogs | |
Description |
This is my first bug report for this project. Please let me know if I am doing anything incorrectly. I have set a custom dialog_backgroundCoverColor in the editor host page before calling CKEDITOR.replace. It works correctly in FF3 but it does not work on IE7 or IE8 with compatibility mode on and off. Here is my script block inside an ASP page: <script type="text/javascript">
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
</script> |
|||||
#3718 | IE8 - Invisible blocks | Bug | Normal | CKEditor 3.0 | General | |
Description |
Steps to reproduce: -Open "replacebyclass" in IE8 -Click on the rich combo Result: List looks like empty. Move mouse over the menu - blocks becomes visible. In IE7 works fine. |
|||||
#3719 | [IE8] Toolbar changes height | Bug | Normal | CKEditor 3.0 | General | |
Description |
Open replacebyclass in IE8 and do anything - toolbar changes height of the editor. |
|||||
#3720 | Undo button is disabled after replace all | Bug | Normal | CKEditor 3.0 | Core : Undo & Redo | |
Description |
Reproduction:
Now the undo button is disabled (but you can undo the replace too, after type in a character into the editor area). |
|||||
#3721 | CKeditor: Add a parseable version string | Task | Normal | General | ||
Description |
We are trying to add CKeditor support to Drupal's Wysiwyg API in http://drupal.org/node/462146 Wysiwyg API needs to identify the (exact) version of the library though. Currently, the only version string seems to be located in CHANGES.html, but that is HTML and the version cannot be really parsed easily. Ideal would be a simple JSDoc directive at the top of ckeditor.js: /** * @version 3.0-beta2 */ However, any other way would probably work as well. We just need something reliable, ideally located at the top of a file. |
|||||
#3722 | [IE] ckeditor ie的支持 | Bug | Normal | General | ||
Description |
1.在ie7下的工具条显示缺陷:
2.对话框标题缺陷:
|
|||||
#3725 | Same uiColor accross editors' floatpanels | Bug | Normal | CKEditor 3.0 | General | |
Description |
|
|||||
#3726 | SpellChecker doesn't work in IE6 | Bug | Normal | CKEditor 3.0 | General | |
Description |
SpellChecker doesn't work in IE6. It opens the dialog, but buttons are not available. This bug is probably on the engine side so my suggestion is to disable it in IE6 in final release. |
|||||
#3727 | Cell Properties dialog missing color selection option | Bug | Normal | CKEditor 3.1 | General | |
Description |
The cell border & background color options in the Cell Properties dialog do not provide an easy way for users to select colors. FCKEditor 2.6 provides a color selector in this case. |
|||||
#3728 | Automatic color options don't seem to do anything | Bug | Normal | CKEditor 3.0 | General | |
Description |
The Font color and Background color toolbar options provide an "Automatic" selection. Based on the way that FCKEditor 2.6 has implemented this option, it should reset the background/font color. This doesn't appear to work in the nightly CKEditor builds. |
|||||
#3729 | IE8 Javascript Random Errors | Bug | Normal | FCKeditor 2.6.5 | General | |
Description |
We started receiving random errors that I believe are related to IE8. Below are the errors being generated. Can you help resolve them? We are using version 2.6.3 Beta - Build 19726 in a .Net environment. Fckeditor works okay in FireFox and Chrome. Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Timestamp: Mon, 15 Jun 2009 15:06:21 UTC Message: 'FCKeditorAPI.GetInstance(...)' is null or not an object Line: 116 Char: 81 Code: 0 URI: https://chapters.acg.org/admin/content/edit.aspx?PageId=5445 Line: 116 Error: 'FCKeditorAPI.GetInstance(...)' is null or not an object
Line: 5 Error: Object required sd[w]=function(e){qm_kille(e)}; |
|||||
#3730 | Indent and BR selections | Bug | Normal | CKEditor 3.0 | General | |
Description |
When selecting text that uses <BR> for line separation, the indent feature bleeds the selection to the containing <P>. So that this: <div> test 1<br /> test 2<br /> test 3<br /> test 4<br /> test 5<br /> </div> becomes this; <div style="margin-left: 40px;"> test 1<br /> test 2<br /> test 3<br /> test 4<br /> test 5<br /> </div> irrespective of how many lines of text were selected. The expected behavior would be to indent only the selected text. E.g. if line 3 & 4 were selected the result could be: <div> test 1<br /> test 2<br /> <div style="margin-left: 40px;"> test 3<br /> test 4<br /> </div> test 5<br /> </div> |
|||||
#3732 | loadData on wysiwyg mode without iframe reload | New Feature | Normal | General | ||
Description |
This's derived from #3659. Does the loadData really needs to be asynchronous? Can't we work directly with the existing document when the user wants to change it instead of being forced to create a new one? |
|||||
#3733 | HC: The icon space must be hidden | Bug | Normal | CKEditor 3.0 | Accessibility | |
Description |
In High Contrast mode, the toolbar buttons contains extra space at the left of their labels due to the invisible icons. They should not be displayed instead, helping having a more compact toolbar. |
|||||
#3734 | HC: The editing area has no border | Bug | Normal | CKEditor 3.0 | Accessibility | |
Description |
In High Contrast, the editor area border is not being rendered. |
|||||
#3736 | Paste from MS Word doesn't work by Opera 9.5+ | Bug | Normal | Plugin : Paste from Word | ||
Description |
Version : 2.6.4 Opera Version: 9.5+ Step 1: type any text in MS word and style some text. Step 2: Copy those text to RTE. Actual Result: All are plain text. |
|||||
#3737 | style tags are losing formatting in IE. | Bug | Normal | CKEditor 3.0 | Core : Output Data | |
Description |
|
|||||
#3738 | .NET Connector could not run in medium trust. FCKEditor 2.6 | Bug | Normal | Server : ASP.Net | ||
Description |
I'm using FCKEditor in Host Department shared hosting. I have a problem in uploading images as I'm getting FileIOPersmission security issue, how do I fix this problem. |
|||||
#3739 | Bullet/Number list feature not working | Bug | Normal | CKEditor 3.0 | General | |
Description |
The bullet and number list features cause JS exceptions when invoked, causing them to not function properly and in some browsers makes them unusable.
To reproduce:
A bullet/number list might be started but an exception occurs in both IE and FF. In FF this error is caused: R is not a function [Break on this error] y.appendTo(x);w=[new d.range(u)];if(y.is...rn t;};function o(q,r){var s=l(q),t=q.$; Pressing enter to continue the list causes the list to disappear and other unexpected behaviors. An FCK bookmark is also left in the body when viewing source: <span _fck_bookmark="1" id="cke_bm_82S" style="display: none;"> </span> |
|||||
#3740 | [IE] Paste from Word does not paste on last cursor location | Bug | Normal | CKEditor 3.0 | General | |
Description |
When using Paste from Word, the result is pasted at the beginning of the document instead of where the cursor was when the dialog was invoked. Works as expected in FF. |
|||||
#3741 | DlgTableSummary value not translated in Korean | Bug | Normal | FCKeditor 2.6.5 | UI : Language | |
Description |
The word "Summary" appears when trying to create a table in the Korean locale. The following line is present in the file \editor\lang\ko.js and just needs to have the Korean word for summary added: DlgTableSummary : "Summary", MISSING |
|||||
#3742 | [IE] Wrong dialog layout for dialogs without tab bar in IE RTL mode | Bug | Normal | CKEditor 3.0 | UI : Dialogs | |
Description |
Screencast video: |
|||||
#3743 | Scrollbars in dialogs in IE | Bug | Normal | CKEditor 3.0 | UI : Dialogs | |
Description |
Many dialogs are having scrollbars in IE (e.g. paste from word dialog), especially in Quirks mode. |
|||||
#3744 | Paste from Word - Stack overflow exception | Bug | Normal | CKEditor 3.0 | Plugin : Paste from Word | |
Description |
When using Paste from Word with a large document (see attachment). The editor hangs and causes a stack overflow exception in IE. As usual, worst offender is IE6. The test case is to select the content of the Word doc and paste it into the Paste from Word dialog.
I see that there are two issues here:
What the restrictions in case (1.)? |
|||||
#3745 | [FF3] Problem with pasting content from ODS file into rich text area | Bug | Normal | CKEditor 3.0 | General | |
Description |
When pasting a simple table from an ODP file into the content area of the editor the following exception is thrown in FF3: Permission denied to get property XULElement.accessibleType [Break on this error] });}var E=c||b.safari?B:C;E.on('blur',fu...{var n=this._.styleStateChangeCallbacks; |
|||||
#3747 | Editor dissapears? | Bug | Normal | General | ||
Description |
What woudl caus ethe editor to NOT display at all. One of our clients was able to use it and all of a sudden can't. She can't even see the editor on the page. We can so we know it works. Any idea what would caus ethe editor to stop displaying. |
|||||
#3748 | CKReleaser fails to create samples if element with id "code" is missing | Bug | Normal | CKEditor 3.0 | Project : CKPackager | |
Description |
CKReleaser fails to create samples if element with id "code" is missing. |
|||||
#3751 | Simplify samples | Bug | Normal | CKEditor 3.0 | General | |
Description |
The current samples hold the editor into a <fieldset>. This fact makes things a bit strange when using screen readers because the fieldsat name may be used when reading editor elements like buttons. Other than that, the "Output" tooltip appears sometimes when rollovering the editor. Another issue is that the sample code in the samples is not always available, wrong or incomplete. We could remove it for now until we have it properly defined. |
|||||
#3752 | legend tag value is displayed on the Toolbar | Bug | Normal | CKEditor 3.0 | General | |
Description |
When you add more than three editor in a page, legend tag value is displayed on the Toolbar. I am able to reproduce the issue in the standalone sample file and attached for the reference. |
|||||
#3753 | script tags are not protected in CKEditor | Bug | Normal | CKEditor 3.0 | General | |
Description |
To reproduce:
|
|||||
#3754 | [IE] Tabs are invisible in IE6 quirks RTL | Bug | Normal | CKEditor 3.0 | General | |
Description |
Tabs are invisible in IE6 quirks RTL. Refer to attached screenshot. |
|||||
#3755 | [FF3] Table selection handle doesn't refresh when changing table size | Bug | Normal | CKEditor 3.0 | General | |
Description |
To reproduce:
RESULT |
|||||
#3756 | [IE7] Inconsistent navigation issue on tables with headers | Bug | Normal | General | ||
Description |
To reproduce:
RESULT Same issue when navigating from outside the table into the table, the cursor skips the header cells. |
|||||
#3758 | Add support to change the dialog definition in selected editor | New Feature | Normal | CKEditor 3.0 | UI : Dialogs | |
Description |
When the dialogDefinition event is fired it is possible to change the global dialog definition, but it is not possible to change the dialog definition just for the selected editor instance. |
|||||
#3759 | Replace all only searches to the end of the document | Bug | Normal | CKEditor 3.0 | General | |
Description |
When using replace all in a document and the cursor was placed in the middle of the document, the search only replaces those instances between the cursor and the end of the document. |
|||||
#3761 | Custom styles duplication | Bug | Normal | CKEditor 3.0 | General | |
Description |
By adding the following code at the end of the stylescombo plugin, the editor is currently duplicating the styles in the combo: CKEDITOR.config.stylesCombo_stylesSet = 'wikistyles'; CKEDITOR.addStylesSet( 'wikistyles', [ { name : 'Language: RTL', element : 'div', attributes : { 'dir' : 'rtl' } }, { name : 'Language: LTR', element : 'div', attributes : { 'dir' : 'ltr' } } ]); |
|||||
#3762 | Table alignment use of align attribute | Bug | Normal | CKEditor 3.0 | General | |
Description |
The table plugin uses the align attribute to align a table horizontally on the page. Unfortunately in some browsers (e.g. FF) this setting is overridden if CSS margins are set on the table. This is especially problematic when "center" alignment is desired. The align attribute is also deprecated. So, a better way to set the alignment of the editor should be used. |
|||||
#3763 | Pasting large spreadsheet data slow in IE | Bug | Normal | CKEditor 3.0 | Plugin : Paste from Word | |
Description |
Pasting a table with 30 rows and 100 columns from a spreadsheet application such as Excel or Lotus Symphony Spreadsheet into IE, the time to paste can be very long and can cause the editor to hang. |
|||||
#3764 | Show Blocks + setData causes blocks refresh problem | Bug | Normal | CKEditor 3.0 | General | |
Description |
When setData is called on the editor while show blocks is enabled, the block indicators are not refreshed properly. Attached example test.
To reproduce:
Results: |
|||||
#3765 | Linking image with align attribute in chrome | Bug | Normal | General | ||
Description |
Add an image, set align="left", then try to add a link on that image (click the image to select it, then click the link icon). After typing a URL in the dialog and clicking OK the image disappears. This only seems to happen in Google Chrome. Tested on Windows XP, Google Chrome 2.0.172.31. |
|||||
#3766 | In the context menu, long labels with second level menu get wrapped | Bug | Normal | CKEditor 3.0 | UI : Spell Checker | |
Description |
This issue can be checked with the SCAYT plugin enabled. The "More suggestions" option gets wrapped and hidden. Confirmed with IE only for now. |
|||||
#3767 | IE: Second level menu may not have borders | Bug | Normal | CKEditor 3.0 | UI : Context Menu | |
Description |
In IE, the second level menus may be shown without border. The border appears as soon as we do some rollover in the menu (not always though). This is a but random, but I'm able to constantly reproduce with the SCAYT plugin. It looks like a pure IE rendering bug. We should find a workaround for it. |
|||||
#3768 | SCAYT setting must not use an object tree | Bug | Normal | CKEditor 3.0 | UI : Spell Checker | |
Description |
[3696] changed the scayt plugin specific settings to be based on a main configuration object called CKEDITOR.config.scaytParams. As discussed in the past, this approach is wrong, as it makes it difficult to override settings in the config.js file. Single level settings names should be used, prefixed with the plugin name, like scayt_maxSuggestions and scayt_autoStartup. |
|||||
#3769 | LangTool is stripping the leading CRLF in the files, resulting on several unneeded changes | Bug | Normal | General | ||
Description |
When running fixlineends, all files get a leading CRLF. On langtool execution, this CRLF is stripped, resulting on several unneeded changes. |
|||||
#3770 | SCAYT config option invalid | Bug | Normal | CKEditor 3.0 | UI : Spell Checker | |
Description |
Config options should be flat according to convention. CKEDITOR.config.scaytParams.maxSuggestions Should be CKEDITOR.config.scayt_maxSuggestions |
|||||
#3771 | Replace DIV elements on the fly and JavaScript API samples are broken | Bug | Normal | CKEditor 3.0 | Project : CKPackager | |
Description |
As the title says, after releasing both samples are broken. |
|||||
#3772 | Incomplete URL from perl connector | Bug | Normal | General | ||
Description |
Hello, we're using the perl connector and had a problem with image uploads. When uploading directly in the insert image dialog the new image URL only contains the "Image/filename.jpg" part. However we configured the upload directory to be different from the webroot, so the relative URL resulted in a 404. Using the file browser resulted in a correct URL (like "/uploads/Image/filename.jpg"). After comparing the perl connector source and the php connector source, I introduced a quick hack into commands.pl:
became
This solves the problem for us with no side effects so far - esp. uploading in the file browser still works. I'm not a perl programmer, though, so there may be a nicer/better/shorter solution. Greetings,
|
|||||
#3774 | Showblocks mode switching | Bug | Normal | CKEditor 3.0 | General | |
Description |
Mode switching doesn't preserve showblocks command. This is regression from #3764. I'm attaching the missing code. |
|||||
#3775 | Replace DIV sample styling issues | Bug | Normal | CKEditor 3.0 | General | |
Description |
"Replace DIV" sample uses too generic css selectors which affects created editor dropdown menus. |
|||||
#3776 | enterKey sample in the released version doesn't work | Bug | Normal | CKEditor 3.0 | General | |
#3777 | enterkey sample is good for demonstrating | Bug | Normal | CKEditor 3.0 | General | |
Description |
The enterkey sample should not have default paragraph setup as <p>, instead, it should just have one line of inline text and let the enterMode to decide which block to use. |
|||||
#3779 | Special Character dialog selection problem | Bug | Normal | CKEditor 3.0 | General | |
Description |
When using Special Character dialog, the selection of the characters works sporadically when using the mouse. Tested on FF3, IE7 |