Text of the button which selects all the items in the folder.
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 selects all the images which are loaded into the folder view. So the images which are not displayed in the folder view are not selected. For example, if you specify some file filters, it will select only those files which conform to the filters.
![]() |
---|
The SelectAll method, which emulates this button click, makes all files selected, but not checked (or added to the upload list). The user should click one of the selected thumbnail checkboxes to check these files. This way the files cannot be checked and uploaded without the user's knowledge (using JavaScript). To have a consistent behavior, the Select All button click does the same by default. However, if you find this inconvenient, you can use the property named CheckFilesBySelectAllButton to make this button check items instead of just highlighting them. |
This property is necessary for localization of Image Uploader.
See Also
Examples
LocalizationReference
ButtonAddFilesText PropertyButtonAddFoldersText Property
ButtonDeselectAllText Property
ButtonSendText Property
ButtonStopText Property
ShowButtons Property
ButtonSelectAllImageFormat Property
DeselectAll Method
RemoveAllFromUploadList Method
RemoveFromUploadList Method
SelectAll Method