unlink()
Unlinks this observable object.
unlink(): this;
Summary
This method marks the object as ‘stale’ or ‘deleted’, which means that the object should no longer be used by the application — even though the object’s properties can still be accessed.
- Any objects that have been attached to the unlinked object (using attach()) will also be unlinked.
- If this object was attached to a containing ObservableList, the item will be removed.
Related
class ObservableObject
The base class of all observable objects, which can be placed into a tree structure to enable event handling and data binding.
