Issue while getting the GridContext on save event of a editable subgrid

1.3k Views Asked by At

I'm facing a problem to get gridContext on save event of a editable subgrid. I need to get the data from editable subgrid and do some operations on the form but while getting the grid from gridContext it shows the error message called:

gridContext.getGrid is not a function

JavaScript code:

JavaScript code

I'm referring the below MSDN links to get gridContext and grid data.

1

There are 1 best solutions below

0
On

You need to remove the parenthesis "()" in the getGrid, since it is not a function. The correct code would be:

var myRows = gridContext.getGrid.getRows();