File mask for the files which are allowed to be displayed and uploaded.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("FileMask", "*.*");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setFileMask(value);
value = getImageUploader("ImageUploaderID").getFileMask();
Property Value

A string value that specifies a file mask for files allowed to be displayed and uploaded. You can use the standard wildcards such as asterisk * (arbitrary substring) and question mark ? (arbitrary character). To specify several masks, separate them by semicolons, e.g. *.jpg;*.jpeg;*.jpe. To display all possible files, use *.*.

Default value is "*.*" (all files).

See Also

Examples
Restricting Files by Extensions and Types
Uploading Non-Image Files

Reference
DeniedFileMask Property