我创建了一个Angular Js ui-grid,最后一列包含一个按钮。 当点击该按钮时,我需要获取该行的每个单元格的数据。 如果有人能帮我解决这个问题会很感激。
var removeTemplate = '<input type="button" value="" style="background: url(../../Content/images/del-currency.png);widht:60px;height:30px" ng-click="removeRow()" />';
$scope.selectedCurrencyGrid = {
data: 'selectedCurrencies',
multiSelect: false,
selectedItems: $scope.selectedCurrencyRow,
enableColumnResize: false,
enableRowSelection: true,
columnDefs: [
{ field: 'Name', displayName: 'Name' },
{
field: 'IsDefault',
displayName: 'Default',
cellTemplate: '<input type="radio" name="radAnswer" ng-model="row.entity.IsDefault">'
},
{ name: 'Photo', field: 'photoP', displayName: '', cellTemplate: removeTemplate }
]
};
$scope.removeRow = function () {
var index = this.row.rowIndex;
//need to get cell data of selected row
};
答案 0 :(得分:1)
将row.entity
添加到模板功能中,
这将使您可以访问对象属性(行单元格):
<input type="button" value="" style="background: url(../../Content/images/del currency.png);widht:60px;height:30px" ng-click="removeRow(row.entity)" />';
确保您在conteroller中的功能获得参数:
$scope.removeRow = function (selectedRowObject) {
//Your logic...
};