Ребята, подскажите как перерисовать представление при добавлении в коллекцию
define([
'marionettejs',
'text!templates/tables/reports/reports-list.hbs',
'collections/tables/reports-list',
'db/reports-list'
],
function (MarionetteJS, ReportsListTPL, ReportsListCollection, ReportsListDB) {
'use strict';
return Backbone.Marionette.ItemView.extend({
template: _.template(ReportsListTPL),
collection: new ReportsListCollection(ReportsListDB),
tagName: 'ul',
initialize: function () {
this.collection.on('add', this.render)
}
});
})
Добавляю в коллекцию таким макаром
App.reportsListView.collection.add({name: nameInput, id: data.id});