This property is obsolete.

Image Uploader layout.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("Layout", "ThreePanes");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setLayout(value);
value = getImageUploader("ImageUploaderID").getLayout();
Property Value

String value Integer value Description
OnePane 0 Single upload list. You can drag-n-drop the necessary files from the Windows Explorer to this list. Also you can add files and folder using Add Files and Add Folders buttons respectively.
TwoPanes 1 Folders tree + folder view (a list of the files in the selected folder). Each file has a checkbox which you need to check to select this file for upload.
ThreePanes 2 Folders tree + folder view + upload list. Drag-n-drop the necessary files from the folder view or Windows Explorer to the upload list. Also you can use special buttons to do this.
NoteNote

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 "ThreePanes".

Remarks

This property is obsolete. It works for backward compatibility only. Use the PaneLayout property instead. PaneLayout has absolutely the same functionality.

NoteNote

If you try to use it in Java version, it will fail.