This documentation is for the old version. Go to the latest Upload Suite docs

ImageUploader.DeleteFilesDialogTitleText Property

Supported in: ActiveX , Java

Title of the dialog which asks the user to confirm that they really want to delete uploaded or selected files.

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("DeleteFilesDialogTitleText", "Confirm File Delete");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setDeleteFilesDialogTitleText(value);
value = getImageUploader("ImageUploaderID").getDeleteFilesDialogTitleText();

Property Value

A string value that specifies a title of the dialog which asks the user to confirm that they really want to delete uploaded or selected files.

Default value is "Confirm File Delete".

Remarks

Note

A difference between ActiveX control and Java applet is the following. When the user deletes files in ActiveX control it moves them in the way specified in the Recycle Bin properties. By default, a standard delete confirmation dialog appears and files are moved to the Recycle Bin if the user clicks Yes. However if the user deletes files in Java applet the internal Image Uploader dialog appears and files are removed permanently when the user clicks Yes.

This property is necessary for localization of Image Uploader.

See Also

Manual

Reference