Aurigma Image Uploader 6.5 Dual
ImageUploader.UploadPaneSortMode Property
Sort mode of the upload list.
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("UploadPaneSortMode", "Unsorted"); //...other params... iu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setUploadPaneSortMode(value);
value = getImageUploader("ImageUploaderID").getUploadPaneSortMode();Property Value
A member of this enumeration that specifies a sort mode of the upload pane:
| String value | Integer value | Description |
|---|---|---|
| Unsorted | 0 | Items are unsorted. |
| Name | 1 | Items are sorted by name alphabetically. |
| Size | 2 | Items are sorted by file size. |
| Type | 3 | Items are sorted by file type alphabetically. |
| Modified | 4 | Items are sorted by the date of last modification. |
| Path | 5 | Items are sorted by full path. |
If unsupported string value is passed, it is interpreted as Unsorted.
Sort mode is automatically reset to Unsorted when new items are added or re-arranged via drag-n-drop.
Default value is "Unsorted".