I need to call the initialize method of the parent class, from inside the inherited MyModel-class, instead of completely overwriting it as I am doi
initialize
MyModel
MyModel = BaseModel.extend({ initialize: function() { MyModel.__super__.initialize.apply(this, arguments); // Continue doing specific stuff for this child-class. }, });