I have an observable array. Assume that (object) data has Id, Name, Description
self.SelectedObjects = ko.observableArray();
self.SelectedObjects.push(data);
self.SelectedObjects.push(data);
Line number 1 and 2 work fine. At line number 3 the debug point vanishes and never comes back.