Switch that specifies whether to display filenames in the folder and upload 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("ShowFileNames", "true"); //...other params... iu.writeHtml(); </script> |
Get/Set Value in Runtime
JavaScript | ![]() |
---|---|
getImageUploader("ImageUploaderID").setShowFileNames(value); value = getImageUploader("ImageUploaderID").getShowFileNames(); |
Property Value
A boolean value (true
or false
). If true
,
filenames are visible, otherwise they are hidden.
Default value is "true".