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
this seems to be almost a duplicate of Super in Backbone, so you want something like this:
Backbone.Model.prototype.initialize.call(this);