Aurigma Image Uploader 6.5 Dual
ImageUploader.AllowTreePaneWidthChange Property
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".