public getGridPersistData() {
const persistData = this.gridObj.getPersistData();
this.persistData = JSON.parse(persistData);
console.log('getPersistData', JSON.parse(persistData));
}
After i call this function and I double-click on grid row to edit it I get this error:

If I comment the row: this.gridObj.getPersistData(); everything seems to work fine.