Switch that specifies whether the user can resize the tree pane.
Syntax
Initialize
| JavaScript | Copy 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 | Copy 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".
Copy Code