Hi Sonam,
Syncfusion greetings.
We have prepared the below sample to display the selected event row and cell index.
onEventClick(args) {
var cellHeight = document.querySelector('.e-work-cells').offsetHeight;
var eventTop = args.element.style.top;
this.RowIndex = parseInt(eventTop, 10) / cellHeight;
var dataId = args.element.attributes[1].value;
this.cellIndex = document.querySelector('div[data-id="' + dataId + '"').closest('td').cellIndex;
document.querySelector('.row').innerHTML = 'Row Index:' + this.RowIndex;
document.querySelector('.cell').innerHTML = 'Cell Index:' + this.cellIndex;
}
Regards,
Karthi