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

ImageUploader.ButtonSelectAllText Property

Supported in: ActiveX , Java

Caption of the button which selects all the files in the folder pane in ThreePanes layout. This button is displayed in TwoPanes layout if CheckFilesBySelectAllButton is false.

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("ButtonSelectAllText", "Select All");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setButtonSelectAllText(value);
value = getImageUploader("ImageUploaderID").getButtonSelectAllText();

Property Value

A string value that specifies a caption of the Select All button. If an empty string is specified, the button becomes invisible.

Default value is "Select All".

Remarks

This button checks all the images which are loaded into the folder pane. So the images which are not displayed in the folder pane are not checked. For example, if you specify some file filters, it will check only those files which conform to the filters.

Note

The SelectAll() method makes all files selected, but not checked. The user should click one of the selected thumbnail checkboxes to check these files. This way files cannot be checked and uploaded without the user's knowledge (using JavaScript). However, if you want to make the behavior of the SelectAll() method and Select All button equal set the CheckFilesBySelectAllButton property to false.

This property is necessary for localization of Image Uploader.

See Also

Manual

Reference