我想为每一行添加单选按钮。我正在搜索一些在线dojo示例以编程方式添加单选按钮但无法找到解决方案。请建议每次添加新行时,如何在每行的column1之前添加单选按钮。 以下是小提琴:http://jsfiddle.net/Q9GYv/59/
示例代码:
/*create a new grid*/
var grid = new DataGrid({
id: 'grid',
store: store,
structure: layout,
rowSelector: '20px'
});
/*append the new grid to the div*/
grid.placeAt("gridDiv");
/*Call startup() to render the grid*/
grid.startup();
var id = 2;
var button = new Button({
onClick: function () {
console.log(arguments);
store.newItem({
id: id,
col2: "col2-" + id,
col3: "col3-" + id,
col4: "col4-" + id
});
id++;
}
}, "addRow");
});