I am trying to handle error usecase with go.Picture element, go.Picture element is binded with dynamic URL to load like for example :
$(go.Picture, {
width: 55,
height: 55
},
new go.Binding("source", "img")
)
Incase the URL is corrupted or storage remove the images then url will not load image & hence blank image is displayed. I just want to show default image in that case.
I tried looking into successFunction but i dont think on error this will help out.
Any clue will be greatly appreciated.