【发布时间】:2013-11-20 11:59:43
【问题描述】:
这会将一组新的行附加到原始网格:
var refreshgrid = function(){
var grid = new Backgrid.Grid({
columns: columns,
collection: ter
});
// Render the grid and attach the root to your HTML document
// $("#example-1-result").append(grid.remove());
$("#example-1-result").prepend(grid.render().$el);
}
因此,每次我调用它时,它都会附加到网格而不是覆盖它,这正是我想要的。 如何实现?
【问题讨论】:
标签: javascript backbone.js backgrid