Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › Forums › Data Grid › Cell.row is undfined in onCellUpdate This topic has 1 reply, 2 voices, and was last updated 3 years, 7 months ago by martin-jq. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts May 2, 2022 at 8:20 am #103123 tbettinazzi@axioma.itParticipant In my grid I’m using this onCellUpdate method. onCellUpdate(cell, oldValue, value, confirm) { alert(‘AAAAAA’); let newValue = value; console.log(newValue); let row = cell.row.id; let column = cell.column.index; console.log(row + ‘/’ + column); sendDatiGriglia(newValue, row, column); confirm(true); }, Looking into the console I get an error cell.row is undefined and the grid hangs. What’s wrong ? Tks May 3, 2022 at 2:44 pm #103128 martin-jqParticipant Hello tbettinazzi@axioma.it, Please, note that the first argument of the onCellUpdate callback is calls cells and it represents an array of edited cells. So you should get the row id like this: cells[0].row.id Please, check this Example. Best Regards, Martin Smart HTMLElements Team https://www.htmlelements.com/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In With Google Log In