Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
It pleases me no end to see people using JavaScript with QuickBase!
This code will immediately (no need to wait till Save button is clicked) check the file size of a selected file and remove the file from the input if it is too large.
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=581
Notes:
(1) For security reasons, you can only set the value of a file input to an empty string (essentially removing the selected file).
(2) The code uses backticks to do strinng interpolation.
(3) My code should of course be placed wthin the normal IOL module decoding logic._
This code will immediately (no need to wait till Save button is clicked) check the file size of a selected file and remove the file from the input if it is too large.
$("#_fid_6").on("change", function(e) {
var maxSize = 1000;
var data = e.originalEvent.target.files[0];
if (data.size > maxSize) {
alert('Your file size is ${data.size}. Please select a smaller file.');
this.value = "";
}
});
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=581
Notes:
(1) For security reasons, you can only set the value of a file input to an empty string (essentially removing the selected file).
(2) The code uses backticks to do strinng interpolation.
(3) My code should of course be placed wthin the normal IOL module decoding logic._
- MichaelTamoush6 years agoQrew CaptainReviving this thread. Is there a way to use script to simply put the file size into a field? I just need the file size there to then check a couple things using formulas/dynamic rules. I believe these solutions give alerts, and I don't know syntax to set a field to the size.
------------------------------
Mike Tamoush
------------------------------