I am getting "no method 'result' backbone.marionette.js:402 error". here's the trace:
Uncaught TypeError: Object function (obj) { return new wrapper(obj); } has no method 'result' backbone.marionette.js:402
Marionette.CollectionView.Marionette.View.extend.buildItemView backbone.marionette.js:402
Marionette.CollectionView.Marionette.View.extend.addItemView backbone.marionette.js:360
Marionette.CollectionView.Marionette.View.extend.showCollection backbone.marionette.js:314
...
in backbone.marionette.js:
// Build an `itemView` for every model in the collection.
buildItemView: function(item, ItemView){
var itemViewOptions = _.result(this, "itemViewOptions");
***Uncaught TypeError: Object function (obj) { return new wrapper(obj); } has no method 'result' ***
var options = _.extend({model: item}, itemViewOptions);
var view = new ItemView(options);
return view;
backbone. },
my calling code:
MyApp.module("CatalogsApp.Pasteboard", function(Pasteboard, MyApp, Backbone, Marionette, $, _) {
var CatalogListView, CatalogView;
CatalogView = Marionette.ItemView.extend({
tagName: "div",
className: "catalog-cell",
template: "catalogs/catalog"
});
CatalogListView = Marionette.CollectionView.extend({
tagName: "div",
className: "paste-board",
itemView: catalogView
});
Pasteboard.showCatalogs = function(catalogList) {
var catalogListView;
catalogListView = new CatalogListView({
collection: catalogList
});
return MyApp.layout.main.show(catalogListView);
};
});
if anyone has any clue what might be the issue here causing the type error - be great to get thoughts. i am almost there i can tell. catalogList collection seems fine - populated from server. i know this might be hard to decipher, but maybe someone has some idea of how to approach solving.