Indicator which specifies whether the user is allowed to edit descriptions.
<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>
getImageUploader("ImageUploaderID").setDescriptionsReadOnly(value);
value = getImageUploader("ImageUploaderID").getDescriptionsReadOnly();
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".