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

Thumbnail.ParentControlName Property

Supported in: ActiveX , Java

Name of the ImageUploader control instance this thumbnail is associated with.

Syntax

Initialize

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

Get/Set Value in Runtime

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

Property Value

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

Default value is "".

Remarks

After you associate this Thumbnail control with a parent ImageUploader, you should bind it with some item from the upload list. To do it, set the Guid property to the GUID of this item. You can get it using the ImageUploader.UploadFileGuid property.

See Also

Manual

Reference