error
Fired when an error happened with the image loading.
Event Data
e.sender kendo.ui.ImageEditor
The widget instance which fired the event.
pseudo
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
imageUrl: "invalid-image-url.jpg",
error: function(e) {
console.log("Error loading image:", e);
alert("Failed to load image. Please try again.");
}
});
</script>
In this article