I am displaying an image in a grid via a template and I use a web service to get that image. After I have updated a row via the update popup, the image does not get refreshed. I need to force the grid to call the web service again.
{title: "Modified Drawing", template: function(data){return getModifiedDrawingTemplate(data) }, filterable: false },function getModifiedDrawingTemplate(data) { var url = buildWebServiceUrl(retrieveDrawingUrl, data.CORR_DETAIL_ID, "new", "SVG", "250"); return '<img src="' + url + '" />';}
Could you please tell me how to do this? The column is not bound to the data as such so I can't use the bind method.
