View mode for the upload pane.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var vu = new VideoUploaderWriter("VideoUploaderID", 610, 500); //...other params... vu.addParam("UploadView", "Thumbnails"); //...other params... vu.writeHtml(); </script>
getVideoUploader("VideoUploaderID").setUploadView(value); value = getVideoUploader("VideoUploaderID").getUploadView();
A member of this enumeration that specifies the border style of the upload view:
String value | Integer value | Description |
---|---|---|
Thumbnails | 0 |
Videos are displayed as thumbnails, non-video files are displayed as icons. It is possible to edit descriptions for each file. |
Icons | 1 |
All files are displayed as icons. |
List | 2 |
All files are displayed as a simple list (icon + FileName). |
Details | 3 |
All files are displayed as a detailed list (icon + FileName + size + file type + last modification date). |
AdvancedDetails | 4 |
Combination of |
When you get this property value through the JavaScript, integer value will be returned (even if you initialize the property with a string value).
Default value is "Thumbnails".