Aurigma Image Uploader 6.5 Dual
ImageUploader.ButtonSelectAllText Property
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.
This property is necessary for localization of Image Uploader.