新的 StaticDataSource 将为燃料网格构建数据源。格式化程序将设置属性以在数据网格单元格中生成可编辑按钮。代码如下:
app.PlayersView = Backbone.View.extend({
template: _.template( $("#players-template").html() ),
events: {
"click #addUser" : "addUser",
},
initialize: function () {
if(this.collection){
this.collection.fetch();
}
this.listenTo(this.collection, 'all', this.render);
},
render: function () {
this.$el.html( this.template );
var dataSource = new StaticDataSource({
columns: [
{
property: 'username',
label: 'Username',
sortable: true
},
{
property: 'group',
label: 'Groups',
sortable: true
},
{
property: 'edit',
label: 'Edit',
sortable: true
}
],
formatter: function (items) {
$.each(items, function (index, item) {
item.edit = '<div class="btn-group"><a id="editGroup" class="btn">Edit</a></div>';
});
},
data: this.collection.toJSON(),
delay: 250
});
$('#MyGrid').datagrid({
dataSource: dataSource,
stretchHeight: true
});
});
app.Playerview 对象在 bakcbone 路由器的某处创建,如下所示:
new app.PlayersView({
collection : new app.UsersCollection
}));
在这里,列是用户名、组和编辑。每行的编辑列包含编辑按钮。当我单击任何行中的编辑按钮时,我想将特定的行模式或行数据传递给任何其他主干视图。我们怎么能做到这一点?
实际上,我将打开允许编辑该特定行的对话框。我希望 modal 由该行值预先填充。
提前致谢