Track changes

5
I would like to track all changes made to a string value, including insertions, deletions and formatting changes. Can this be build on top of the Rich Text Editor widget?
asked
1 answers
2

Yes, and no, you could track changes in the same way as using normal text, using object events. The difficult part however is to track and render these differences (like in SVN changesets or Word's change tracking).

If you want to simply show the to versions beside each other; that is easily achievable using the mentioned object events.

answered