This documentation is for the old version. Go to the latest Upload Suite docs

UploadPane.ParentControlName Property

Supported in: ActiveX , Java

Name of the ImageUploader control instance this upload pane is associated with.

Syntax

Initialize

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
var up = new UploadPaneWriter("UploadPaneID", 610, 500);
//...other params...
up.addParam("ParentControlName", "");
//...other params...
up.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("UploadPaneID").setParentControlName(value);
value = getImageUploader("UploadPaneID").getParentControlName();

Property Value

A string value containing a name of the ImageUploader control instance this upload pane is associated with.

Default value is "".

Remarks

To associate the separate UploadPane control with ImageUploader it is necessary to hide the standard upload pane. To do it, set the FolderPaneHeight property to -1.

All upload pane settings from the parent ImageUploader will be automatically applied to this UploadPane.

See Also

Manual

Reference