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 scb = new ShellComboBoxWriter("ShellComboBoxID", 610, 500);
//...other params...
scb.addParam("AdditionalFolderNavigator", "");
//...other params...
scb.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ShellComboBoxID").setAdditionalFolderNavigator(value);
value = getImageUploader("ShellComboBoxID").getAdditionalFolderNavigator();
Property Value

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

Default value is "".

Remarks

Folder navigator is a control used for synchronization of currently selected folders. For example, you can use this instance of ShellComboBox control to select current folder in ImageUploader which 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