Text of the label on the upload pane displayed when no files are selected for the upload.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("DropFilesHereText", "Drop files here"); //...other params... iu.writeHtml(); </script>
getImageUploader("ImageUploaderID").setDropFilesHereText(value); value = getImageUploader("ImageUploaderID").getDropFilesHereText();
A string value which specifies a caption of the Drop Files Here label.
Default value is "Drop files here".
This property can be used with OnePane
and ThreePanes
layout. For more infomation read Layouts article.
This property is necessary for localization of Image Uploader.
If you want to specify a multiline text use the "\n"
sequence to separate lines.