Hi,
I’m displaying 2 images in a grid cell and in grid cell clicked event capture method I’m trying to see where the user has clicked like on which picture he clicked it.
For this I’ve used the below code:
cellClicked(event): void {
// This would give the image name on which the user has clicked.
let imageSrc = event.args.originalEvent.originalEvent.path[0].currentSrc;
}
Above working perfectly in chrome but it is not working internet explorer, event object structure is not the same as the one in the chrome.
Can you please tell me how can I get the above information in IE11?