I have a store with items retrieved from server. I would like to detect changes to alter UI accordingly.
I am able to detect dirty records (new, updated), but I don’t know how to detect deletion, which I also need to handle…
An illustration of my problem: http://jsfiddle.net/MikeAski/bBUB2/
Any idea?
I finally found a way out: http://jsfiddle.net/MikeAski/bBUB2/7/
This solution is less intrusive on models than the one suggested by jsworkman.
Not fully satisfying, but works as expected… :-/
Still interested in better implementation rather than workaround-flavoured solution!