Ticket #80 (closed enhancement: invalid)

Opened 3 years ago

Last modified 3 years ago

html view is not refreshed while editing wysiwym view

Reported by: marcvangend Owned by: jf.hovinne
Priority: trivial Milestone: 0.4
Component: editor Version: trunk
Keywords: html view refresh Cc:

Description

[Is this a defect or an enhancement request? Anyway, I find it a must-have feature.]

When you open the html view and edit the html, the wysiwym view automatically refreshes in real time. However, when I open the html view and edit in the wysiwym view, the html seems not to be updated. It is only updated when I close and open the html view again. I would like to see the html refresh in real time as well, or at least have a 'refresh' button next to the html view.

(IE 6.0.2800)

Change History

Changed 3 years ago by jf.hovinne

  • priority changed from critical to trivial
  • status changed from new to closed
  • type changed from defect to enhancement
  • resolution set to invalid
  • milestone set to 0.4

Refreshing the HTML in realtime would be too CPU intensive, and if you really need to update the view, add your button and try something like:

postInit: function(wym){
  jQuery('#your-button').click( function() {
    wym.update();
  });
}
Note: See TracTickets for help on using tickets.