Indicator which specifies whether the user is allowed to edit descriptions.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("DescriptionsReadOnly", "false");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setDescriptionsReadOnly(value);
value = getImageUploader("ImageUploaderID").getDescriptionsReadOnly();
Property Value

A boolean value (true or false). If true, descriptions cannot be modified by the user (but can be edited programmatically through the script). Otherwise, the user can modify the descriptions.

Default value is "false".

See Also

Examples
Customizing Appearance

Reference
FolderPaneShowDescriptions Property
MaxDescriptionTextLength Property
ShowDescriptions Property
UploadPaneShowDescriptions Property