你可以使用itemFormatter添加按钮。
- grid.itemFormatter = function (panel, r, c, cell) {
- if (panel.cellType == wijmo.grid.CellType.Cell && panel.columns[c].header == "Button") {
- cell.innerHTML = "<input type='button' value='test' id='elem'/>";
- $(cell).on('click', '#elem', function () {
- console.log(cv.currentItem);
- });
- }
复制代码
或是通过wjFlexGridCellTemplate 写一个按钮模板。
http://demos.wijmo.com/5/angular ... er/#/grid/templates |