Tagged Questions

6
votes
3answers
9k views

C#: How to implement good and efficient undo/redo functionality for a TextBox

I have a TextBox which I would like to implement undo/redo functionality for. I have read that it might have some slight undo functionality already, but that it is buggy? Anyways, I would like to ...
3
votes
2answers
846 views

Memento in Javascript

I'm looking for a JavaScript implementation of the memento pattern (GoF) to be used in CRUD forms. In its basic level it will be enough to undo changes on inputs, but it would be great to use it with ...