Description of the specified item of the upload list.

Syntax

Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setUploadFileDescription(Index, value);
value = getImageUploader("ImageUploaderID").getUploadFileDescription(Index);
Parameters
Index

A positive integer which specifies an index of the upload list item (i.e. the upload file). An index is 1-based. In other words valid value is in range [1, UploadFileCount].

Property Value

A string value that specifies a description of the specified upload list item.

Remarks

When this property is modified, appropriate description field will be displayed under the item (if description is visible) and uploaded to the server.

NoteNote

Even if the description is invisible or read-only, you can change it via this property using JavaScript.

See Also