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

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("AllowTreePaneWidthChange", "true");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
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
TreePaneWidth Property