Switch that specifies whether to send standard text POST fields during the upload process.
Syntax
Initialize
JavaScript | ![]() |
---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("SendDefaultFields", "true"); //...other params... iu.writeHtml(); </script> |
Get/Set Value in Runtime
JavaScript | ![]() |
---|---|
getImageUploader("ImageUploaderID").setSendDefaultFields(value); value = getImageUploader("ImageUploaderID").getSendDefaultFields(); |
Property Value
A boolean value (true
or false
). If false
, Image Uploader does not send standard text POST fields
during the upload. Only source files and thumbnails are sent. Otherwise, it does.
Default value is "true".