Undo Stack
Hi,
I have run into a situation where I wouls want to update the text of a span not by copy pasting a textscrap or any other known means ,
instead by directly updating the text property
eg
somespan.text="my new text";
By doing so I am not able to undo this change
editMgr.undoManager.undo();
does nothing when I undo this.
Eg:
Initial Span <someSpan>enter your name</somSpan>
after setting the text property
someSpan.text="my new text";
Now if I try to undo the span back to "enter your name" by editMgr.undoManager.undo();
