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
I think it'd be
MyModel = BaseModel.extend({ initialize: function() { this.constructor.__super__.initialize.call(this); // Continue doing specific stuff for this child-class. }, });