Switch that specifies whether the user can resize the tree pane.
<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>
getImageUploader("ImageUploaderID").setAllowTreePaneWidthChange(value); value = getImageUploader("ImageUploaderID").getAllowTreePaneWidthChange();
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".