Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    RichTextEditor's change(d) event(s) not working always

    Try this code in latest 8.3 nightly build

    Code:
    isc.RichTextItem.addProperties({
      change: function () { console.log('change'); },
      changed: function () { console.log('changed'); }
    });
    
    isc.DynamicForm.create({
        width: 300,
        fields: [
            {title:"Description", type:"richText"} 
        ]
    });
    In Firefox:
    * 'Backspace' key throws a JS error (but it fires change/changed)
    * 'Del' key works ok

    In Chrome:
    * 'Backspace' key doesn't fire change/changed. If the press action erases text, it should fire them.
    * 'Del' key doesn't fire change/changedIf the press action erases text, it should fire them.

    In all browsers:
    * Select text + Right click mouse -> 'Supr/Delete/Erase' doesn't fire change/changed
    * Select text + Right click mouse -> 'Cut' doesn't fire change/changed
    * Select text + CTRL+X shortcut doesn't fire change/changed
    * Right click mouse -> 'Paste' (if there is anything to paste) doesn't fire change/changed
    * CTRL+V shortcut (if there is anything to paste) doesn't fire change/changed

    Other kinds of text edition (key press, etc) seems that fire change/changed ok.

    Also, each time the formitem is loaded, the change/changed event is fired. This doesn't happen with other formitems, like 'text'

    Regards.

    #2
    Hi
    We've made some changes which we believe will resolve these issues for you.
    Please try the next nightly build, dated July 19 or above and let us know if you continue to have problems

    Regards
    Isomorphic Software

    Comment


      #3
      In IE10 the following issues still happen:
      * Select text + Right click mouse -> 'Supr/Delete/Erase' doesn't fire change/changed
      * Select text + Right click mouse -> 'Cut' doesn't fire change/changed
      * Right click mouse -> 'Paste' (if there is anything to paste) doesn't fire change/changed


      Also, the visualization is not ok, since the component frame/border is missing.

      Regards.

      Comment


        #4
        Any news about the IE problem?

        Comment


          #5
          We're looking into it. We'll let you know what we find

          Regards
          Isomorphic Software

          Comment


            #6
            At this stage we believe all change / changed events should be firing as expected in IE 8, 9 or 10 running with the standards / HTML5 doctype in place. So we believe this issue is resolved.

            Please try the latest nightly build and let us know if you continue to have problems

            Thanks
            Isomorphic Software

            Comment

            Working...
            X