Caption of the Skip All button on the dialog displayed when the folders are being added 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("AddFolderDialogButtonSkipAllText", "Skip All"); //...other params... iu.writeHtml(); </script> |
Get/Set Value in Runtime
JavaScript | ![]() |
---|---|
getImageUploader("ImageUploaderID").setAddFolderDialogButtonSkipAllText(value); value = getImageUploader("ImageUploaderID").getAddFolderDialogButtonSkipAllText(); |
Property Value
A string value that specifies a caption of the Skip All button on the dialog displayed when the folder is added to the upload list.
Default value is "Skip All".
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.