This property is obsolete.
Switch that specifies whether the original file or an icon should be sent to the server, if the third thumbnail could not be created.
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("UploadThumbnail3FallbackMode", "Icon"); //...other params... iu.writeHtml(); </script> |
Get/Set Value in Runtime
JavaScript | ![]() |
---|---|
getImageUploader("ImageUploaderID").setUploadThumbnail3FallbackMode(value); value = getImageUploader("ImageUploaderID").getUploadThumbnail3FallbackMode(); |
Property Value
One of the following values:
String value | Integer value | Description |
---|---|---|
Icon | 0 | Send an icon. |
SourceFile | 1 | Send the original file. |
Default value is "Icon" (0).
Remarks
This property is obsolete. Use the UploadThumbnail3CompressionMode property instead.