Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
2537 Widoki

How do restrict users to upload (e.g = or > 1MB) image size for a particular image field using python code?

Awatar
Odrzuć
Najlepsza odpowiedź

Hello Haris Masqati,

You can set image upload size validation error with js.

Find Example in comment.

I hope this will help you.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Awatar
Odrzuć

For Example -

$('input[name="attachment"]').change(function(){
var fileInput = document.getElementById('test_id');
var files = fileInput.files;
/ checking for greater than or equals to 2MB file size /
for (let i = 0; i < files.length; i++) {
var fileSize = files[i].size;
/ 1024 = 1MB /
var size = Math.round((fileSize / 1024));
if (size > 2*1024) {
alert("Invalid file size, please select a file less than or equal to 2mb size");
fileInput.value = '';
return false;
}
}

}
if(files.length==0){
alert("Please choose a file first...");
return false;
}

})

Powiązane posty Odpowiedzi Widoki Czynność
0
cze 21
2509
2
cze 17
8797
1
maj 23
2781
1
lut 25
4243
1
kwi 19
10003