New to Kendo UI for jQuery? Start a free 30-day trial
Set Size Limit for Images Uploaded with Editor ImageBrowser
Updated on Dec 10, 2025
Environment
| Product | Progress® Kendo UI® Editor for jQuery |
| Operating System | All |
| Browser | All |
| Preferred Language | JavaScript |
Description
How can I set a size limit for the images that are uploaded with the ImageBrowser of the Editor?
Solution
- Check the size of the selected file in the
selectevent handler of the Upload that is embedded in the ImageBrowser. - Prevent the upload if the file size exceeds the specified limit.
<script>
$(document).ready(function () {
// Attach a click handler to the ImageBrowser tool of the Editor.
$(".k-i-image").click(function () {
setTimeout(function(){
// Attach a select handler to the Upload embedded in the ImageBrowser.
$(".k-imagebrowser .k-upload").find("input").data("kendoUpload").bind("select", function (e) {
// Prevent the event if the selected file exceeds the specified limit.
if (e.files[0].size > 1048576) {
e.preventDefault();
alert("Maximum allowed file size: 1MB");
}
});
});
});
});
</script>