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

ImageUploader.ButtonCheckAllText Property

Supported in: ActiveX , Java

Caption of Check All button which is dispayed in TwoPanes layout if CheckFilesBySelectAllButton is set to true. The button sets check boxes for all files in the folder pane.

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

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setButtonCheckAllText(value);
value = getImageUploader("ImageUploaderID").getButtonCheckAllText();

Property Value

A string value that specifies the caption of the Check All button which is displayed in TwoPanes layout if CheckFilesBySelectAllButton is set to true. If an empty string is specified, the button is invisible.

Default value is "Check All".

Remarks

This property is necessary for localization of Image Uploader.

See Also

Manual