I have coded the following:
$scope.gridOptions = {
data: \'myData\',
enableCellEdit: true,
multiSelect: false,
columnDefs: [
{ field: \'I
Here is output of some experiment.
http://plnkr.co/edit/W1TkRgsp0klhqquxaiyc?p=preview
It seems that you can put select
in cell template.
And you can make use of row
object to retrieve whatever
you need.
I used row.rowIndex
to property access to the original data.
template example:
(It would be beutiful if we can write to ogirinal data through row
object. I do not know how.)