Identifier (GUID) of the item which is represented with this Thumbnail control.
Syntax
Initialize
| JavaScript | Copy Code
|
|---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var tw = new ThumbnailWriter("ThumbnailID", 610, 500); //...other params... tw.addParam("Guid", ""); //...other params... tw.writeHtml(); </script> |
|
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
getImageUploader("ThumbnailID").setGuid(value);
value = getImageUploader("ThumbnailID").getGuid();
|
|
Property Value
A string value containing GUID that identifies this item.
Default value is "".
Remarks
Before binding the thumbnail with some upload list item, you should specify the parent ImageUploader control. You can do it using the ParentControlName property.
Copy Code