Hi Robin,
Thanks for using Syncfusion products.
We have achieved your requirement using click event. In that event, we can find the corresponding cell which has image tag value and bound the click event as well as we have changed the src attribute value while clicking the image tag column. Please refer to the following code example,
|
grid.on('click', function(e){
if(e.target.tagName == 'IMG'){
//Change the src attribute value while click the cell
e.target.src = 'www.syncfusion.com'
}
}
);
|
Please let us know if you have any further assistance on this.
Regards,
Venkatesh Ayothiraman.