Changes between Initial Version and Version 1 of Ticket #14786


Ignore:
Timestamp:
Aug 22, 2016, 1:42:02 PM (8 years ago)
Author:
Jakub Ś
Comment:

We are using IE but it works on some machine but doesn't work on some machine

If some code works on some browsers but doesn't on other I would strongly recommend checking browser differences first. Perhaps some IE's have compatibility or quirks mode set? Perhaps they have some browser plugins which conflict with CKEditor?

If possible please provide reduced and working sample which we could run and see the problem. Are you able to reproduce this problem without knockout.js to exclude its possible influence on problem?

In page edit mode you create editor instance right after you have started destroying previous one. Could you try doing that after first instance is fully destroyed - http://docs.ckeditor.com/#!/api/CKEDITOR-event-instanceDestroyed and see if it makes any difference? You could also try using this method "on self.closeAndRefresh" - closing the window once editor is destroyed.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14786

    • Property Status changed from new to pending
    • Property Version changed from 4.5.8 to
  • Ticket #14786 – Description

    initial v1  
    88
    99on model dialog initialization
    10 
     10{{{
    1111<script type="text/javascript">
    1212        $(document).ready(function() {
     
    2121        ko.applyBindings(new WorkViewModel(),
    2222    </script>
    23 
     23}}}
    2424
    2525
    2626on close: call self.closeAndRefresh
    2727
     28{{{
    2829 self.closeAndRefresh = function () {
    2930        var instance = CKEDITOR.instances.txtAnmeldelse
     
    3637
    3738    };
     39}}}
    3840
    3941On page Edit mode  call function : self.getWorkText
    40 
     42{{{
    4143self.getWorkText  = function() {
    4244var instance = CKEDITOR.instances.txtAnmeldelse;
     
    6971
    7072}
    71 
     73}}}
    7274
    7375== Expected result ==
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy