New to Kendo UI for jQueryStart a free 30-day trial

File restrictions configuration.

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    fileAttachment: {
        restrictions: {
            allowedExtensions: [".jpg", ".png", ".pdf"],
            maxFileSize: 10485760,
            minFileSize: 1024
        }
    },
    authorId: "user"
});
</script>

Array of allowed file extensions (e.g., [".jpg", ".png", ".pdf"]).

Maximum allowed file size in bytes.

Minimum allowed file size in bytes.