Forum Discussion
JohnThomas
8 years agoQrew Cadet
Within my knowledge on native quick base there is no option, based on there documentation on the Field Type of File Attachment the maximum size of file is 100 MB.
Using Script you can limit that one
$('#you_can_give_your_field_id ').bind('change', function() {
//this.files[0].size gets the size of your file.
alert(this.files[0].size);
});
This will give the size of file based on bytes.
I think this solves your problem.
Any help needed you can reply
Using Script you can limit that one
$('#you_can_give_your_field_id ').bind('change', function() {
//this.files[0].size gets the size of your file.
alert(this.files[0].size);
});
This will give the size of file based on bytes.
I think this solves your problem.
Any help needed you can reply
JuanSolorio1
4 years agoQrew Cadet
Hello John,
Where/how do you use this code snippet?
Thanks in advance.
------------------------------
Juan Solorio
------------------------------
Where/how do you use this code snippet?
Thanks in advance.
------------------------------
Juan Solorio
------------------------------