performing Arithmetic in AW grids
Hi
We want to implement a complex grid in which we want to perform Arithmetic in the grids.
I want to add/concatenate the data from 5 th and 6th column and set the resulting data in 7th column.
I am using the following codebase to perform this calculation.But its giving me errors and webpage becomes blank.
We are using AW 2.0.1 for creating our grids.
obj.setCellData(function(column, row) {
return (this.getCellValue(5, row) + this.getCellValue(4, row));
},6,row);
This code base gives error like " 'row' is undefined ".Please help to resolve this issue.
Thanks
Vikramaditya Garg
Fidelity Investments
We want to implement a complex grid in which we want to perform Arithmetic in the grids.
I want to add/concatenate the data from 5 th and 6th column and set the resulting data in 7th column.
I am using the following codebase to perform this calculation.But its giving me errors and webpage becomes blank.
We are using AW 2.0.1 for creating our grids.
obj.setCellData(function(column, row) {
return (this.getCellValue(5, row) + this.getCellValue(4, row));
},6,row);
This code base gives error like " 'row' is undefined ".Please help to resolve this issue.
Thanks
Vikramaditya Garg
Fidelity Investments
Vikramaditya Garg
June 26,