Title of the dialog displayed when folders are being uploaded to the upload list.
Syntax
Initialize
JavaScript | ![]() |
---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("AddFolderDialogTitleText", "Adding folder..."); //...other params... iu.writeHtml(); </script> |
Get/Set Value in Runtime
JavaScript | ![]() |
---|---|
getImageUploader("ImageUploaderID").setAddFolderDialogTitleText(value); value = getImageUploader("ImageUploaderID").getAddFolderDialogTitleText(); |
Property Value
A string value that specifies a title of the folder adding dialog.
Default value is "Adding folder...".
Remarks
This dialog may be displayed when the AllowFolderUpload property is set to true
.
When multiple folders are added and these folders contain a lot of files, the process of folder adding
may be quite long. In this case Image Uploader displays a special dialog which indicates which folders
are being in process and gives possibility to break the process if it takes too much time.
There are three different ways to interrupt the folder adding process:
- Skip
- Stop scanning the folder which is currently being added and proceed with the next one. None files of this folder will be uploaded. However all folders added before this one will remain in upload list.
- Skip All
- Stop scanning the current folder and skip all next folders. All folders added before the current one will remain in upload list.
- Cancel
- Cancel whole process of the folder adding. If some folders already were added during this process, they are automatically removed from the upload list.
This property is necessary for localization of Image Uploader.