Switch that specifies whether buttons which add or remove files to or from the upload list should be visible.
Syntax
Initialize
| JavaScript | Copy Code
|
|---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("ShowUploadListButtons", "true"); //...other params... iu.writeHtml(); </script> |
|
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
getImageUploader("ImageUploaderID").setShowUploadListButtons(value);
value = getImageUploader("ImageUploaderID").getShowUploadListButtons();
|
|
Property Value
A boolean value (true or false). If true,
buttons are visible, otherwise - hidden.
Default value is "true".
Remarks
These buttons are available only in ThreePanes layout. They are displayed
between the folder and upload pane (if visible).
Note |
|---|
|
Add and Add All buttons have no appropriate methods due security reasons. However these methods can be enabled in a private-label version. Contact sales@aurigma.com for more information. |
See Also
Examples
Customizing AppearanceReference
ButtonAddAllToUploadListText PropertyButtonAddToUploadListText Property
ButtonRemoveAllFromUploadListText Property
ButtonRemoveFromUploadListText Property
RemoveAllFromUploadList Method
RemoveFromUploadList Method
ShowButtons Property
ShowContextMenu Property
Copy Code
Note