Name of the additional folder navigator.

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("AdditionalFolderNavigator", "");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setAdditionalFolderNavigator(value);
value = getImageUploader("ImageUploaderID").getAdditionalFolderNavigator();
Property Value

A string value containing a name of the control which should be used as navigator for this instance of ImageUploader control.

Default value is "".

Remarks

Folder navigator is a control used for synchronization of currently selected folders. For example, you can use an instance of ShellComboBox control to select current folder and ImageUploader will automatically navigate to this folder.

NoteNote

Currently only the following controls can be used as folder navigators:

  • ShellComboBox
  • ImageUploader

See Also

Examples
Open File Dialog Sample

Reference
ImageUploader Class
ShellComboBox Class