Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 11754)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#17065 duplicate [Chromium] Styles list - broken overflow/scrollbar after second open style list santaclaus21
Description

Problem exist in Chrome, Opera (chromium engine ?).

Steps to reproduce

  1. Open any instance of CKEditor, eg. http://nightly.ckeditor.com/17-05-29-06-08/full/samples/
  2. Open combo "Styl"
  3. Click anywhere to close this combo list
  4. Open second time combo "Styl" - there is NO SCROLLBAR.

Expected result

Scrollbar should be visible like at first open combo.

Actual result

Scrollbar is missing.

Other details (browser, OS, CKEditor version, installed plugins)

PC, latest Chrome and Opera.

#17061 duplicate Using input buttons can hang Chrome browser Mateusz Samsel
Description

Steps to reproduce

  1. Open page with editor in Chrome Browser
  2. Add checkbox
  3. Click into checkbox in editor, so selection will be in input element
  4. Make selection after checkbox (like you would like to write something after checkbox)
  5. Browser should hang.

Alternative option:

  1. Write some text in editor.
  2. Add checkbox in the middle of what you wrote.
  3. Start to delete text from then end.
  4. When you reach the checkbox browser should stuck.

Expected result

Browser remain responding.

Actual result

It's necessary to kill process. :(

Other details (browser, OS, CKEditor version, installed plugins)

This same happen on mobile and desktop version. Test was made on Chrome 58 on MacOS.

#17053 invalid ckeditor input text field loose focus and move cursor before text field Waseem
Description

I am trying to integrate ckeditor in a webapp where user inserts predefined text templates which includes input text fields as placeholder. At startup ckeditor is in focus with config.startupFocus = true. To enter data user click on field and textfield get focus with cursor inside textfield but it get lost after few seconds even while user is typing. somehow cursor is consistently moving out of textfield, it moves just before field. When I downgraded by removing all installed plugings this problem is gone, at further investigation it turned out problem is with scayt. As user turn on scayt for grammer and inline spell check this problem starts. I am using ckeditor_4.6.2_full with Chrome 57 on Windows7.

  1. Add Input text field in ckeditor
  2. enable scayt plugin
  3. try to input data in textfield

Expected result

Text field should have focus and User should be able to enter data.

Actual result

Focus is lost from textfield

Other details (browser, OS, CKEditor version, installed plugins)

Sample text which I am trying to insert:

<p>
<span>Applicant must disclaim the design of 
<input contenteditable="false" size="20" /> together with the wording 
<input contenteditable="false" size="20" /> 
</span>
</p>

and my ckeditor config is:

CKEDITOR.editorConfig = function( config ) {
    config.enableTabKeyTools=true;
    config.allowedContent = true;
    config.autoParagraph = false;   
    config.height = 650;
    config.startupFocus = true;
    config.scayt_autoStartup = true;
    config.grayt_autoStartup = true;
    config.resize_enabled = false;
    config.extraPlugins = 'tab,dialogui,dialog,a11yhelp,about,basicstyles,bidi,blockquote,clipboard,' +
    'button,panelbutton,panel,floatpanel,colorbutton,colordialog,menu,' +
    'contextmenu,dialogadvtab,div,elementspath,enterkey,entities,popup,' +
    'filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,' +
    'font,format,forms,horizontalrule,htmlwriter,iframe,image,indent,' +
    'indentblock,indentlist,justify,link,list,liststyle,' +
    'maximize,newpage,pagebreak,pastefromword,pastetext,preview,print,' +
    'removeformat,resize,save,menubutton,scayt,selectall,showblocks,' +
    'showborders,smiley,sourcearea,specialchar,stylescombo,tab,table,' +
    'tabletools,templates,toolbar,undo,wsc,wysiwygarea';
    config.contentsCss = '../internal/css/editor.css';    
    config.scayt_inlineModeImmediateMarkup = true;    
    config.disableNativeSpellChecker = false;
    config.removePlugins = 'magicline,elementspath';
    config.browserContextMenuOnCtrl = true;
};
1 2 3 4 5 6 7 8 9 10 11 12
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