This documentation is for the old version. Go to the latest Upload Suite docs

ImageUploader.AllowTreePaneWidthChange Property

Supported in: ActiveX , Java

Switch that specifies whether the user can resize the tree pane.

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("AllowTreePaneWidthChange", "true");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setAllowTreePaneWidthChange(value);
value = getImageUploader("ImageUploaderID").getAllowTreePaneWidthChange();

Property Value

A boolean value (true or false). If true, the user can move the splitter between the tree pane and folder/upload list. Otherwise the tree pane width is fixed (as specified with the TreePaneWidth property).

Default value is "true".

See Also

Reference