1.请求是否需要填写“tax_amount”栏,由第一栏“tax_type”决定, 例如:tax_type = 1,tax_amount可以编辑, tax_type = 2,tax_amount 无法编辑。
ui-grid 可以做到这个要求吗?
cellEditableCondition: function ($scope) { return $scope.row.entity.bill_type_id === 'aaa'; }
解决了!