Как определить, какая ячейка была нажата?

#grid.js

#grid.js

Вопрос:

 const grid = new Grid({  columns: ['Name', 'Email', 'Phone Number'],  sort: true,  search: true,  data: [  ['John', 'john@example.com', '(353) 01 222 3333'],  ['Mark', 'mark@gmail.com', '(01) 22 888 4444'],  ['Eoin', 'eo3n@yahoo.com', '(05) 10 878 5554'],  ['Nisen', 'nis900@gmail.com', '313 333 1923']  ] });   grid.on('rowClick', (...args) =gt; console.log(JSON.stringify(args)); grid.on('cellClick', (...args) =gt; console.log( JSON.stringify(args));  

Как определить индекс (строка,столбец) ячейки при щелчке по ячейке?