Uploaded image for project: 'CMS'
  1. CMS
  2. CMS-3236

Inline editor optimisation

XMLWordPrintable

    • Icon: Improvement Improvement
    • Resolution: Cannot Reproduce
    • Icon: Major Major
    • 4.2.0
    • None
    • None
    • None

      currently there are many listeners for buttons (images, links) that set input values
      but there are change listeners on theses inputs that modify the htmleditor

      that means, that selecting an image : read and write all its attributes...

      listener()
      {
          var currentImg = ...
          altInput.setValue(currentImg.alt);
      }
      

      should becomde

      listener()
      {
          var currentImg = ...
          altInput.suspendEvents(false);
          altInput.setValue(currentImg.alt);
          altInput.resumeEvents();
      }
      

            Unassigned Unassigned
            raphael Raphaƫl Franchet
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: