This property is obsolete.
Switch that specifies whether the original file or an icon should be sent to the server, if the first thumbnail could not be created.
Syntax
Initialize
| JavaScript | Copy Code
|
|---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("UploadThumbnail1FallbackMode", "Icon"); //...other params... iu.writeHtml(); </script> |
|
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
getImageUploader("ImageUploaderID").setUploadThumbnail1FallbackMode(value);
value = getImageUploader("ImageUploaderID").getUploadThumbnail1FallbackMode();
|
|
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 UploadThumbnail1CompressionMode property instead.
Copy Code