fileAttachment.acceptString
The accept attribute for the file input, specifying which file types are allowed.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
fileAttachment: {
accept: "image/*,.pdf"
},
authorId: "user"
});
</script>