Kendo File Upload Maximum File Size MB to bytes

Ukuran maksimal untuk upload file di kendo menggunakan bytes. Misalnya jika maksimal 25MB, maka ditulis

[code lang=”javascript”]

function onSelectFile(e) {
//…

if (file[0].size > 26214400) { //25MB in bytes
flagSize = 1;
}

//…
}

[/code]

Untuk meng-konversi MB menjadi bytes, bisa menggunakan situs: https://www.gbmb.org/mb-to-bytes

Chandra Oemaryadi has written 244 articles

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>