我一直在尝试为后台网格行实现一个"删除"按钮。这里似乎描述了一个解决方案:
如何为后网格行添加自定义删除选项
然而,我似乎没有让它发挥作用。以下是我尝试过的:
var DeleteCell = Backgrid.Cell.extend({
template: _.template('<button>Delete</button>'),
events: {
"click": "deleteRow"
},
deleteRow: function (e) {
console.log("Hello");
e.preventDefault();
this.model.collection.remove(this.model);
},
render: function () {
this.el.html(this.template());
this.delegateEvents();
return this;
}
});
然后像一样使用
var columns = [{
name: "id", // The key of the model attribute
label: "ID", // The name to display in the header
editable: false, // By default every cell in a column is editable, but *ID* shouldn't be
renderable: false,
// Defines a cell type, and ID is displayed as an integer without the ',' separating 1000s.
cell: Backgrid.IntegerCell.extend({
orderSeparator: ''
})
}, {
name: "weight",
label: "Hello",
cell: DeleteCell
},{
name: "datemeasured",
label: "DateMeasured",
// The cell type can be a reference of a Backgrid.Cell subclass, any Backgrid.Cell subclass instances like *id* above, or a string
cell: "datetime" // This is converted to "StringCell" and a corresponding class in the Backgrid package namespace is looked up
},{
name: "weight",
label: "Weight",
cell: "number" // An integer cell is a number cell that displays humanized integers
}];
我得到的是一个错误:
TypeError: this.el.html is not a function
[Break On This Error]
this.el.html(this.template());
有什么建议吗?
谢谢&欢呼
由于您试图在错误的视图属性上调用函数,因此会出现异常。主干视图有两种不同的方式来访问它的el,要么直接在DOM中访问,要么作为jQuery对象访问,如下所示:
this.el
-这是对DOM元素的直接引用this.$el
-DOM元素的jQuery对象
需要记住的是,您需要在$el
属性上调用append()
和html()
等函数,因为它们是jQuery函数。
dcarson当然是正确的,但只是非常清楚地拼写出渲染函数的代码,我可以使用它来正确工作$el替代了这个。el:
render: function () {
this.$el.html(this.template());
this.delegateEvents();
return this;
}