This documentation is for the old version. Go to the latest Upload Suite docs

restrictions.fileMask Property

Gets or sets a file mask for the files which are allowed to be uploaded.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    restrictions: {
        //...other params...
        fileMask: [],
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').restrictions().fileMask(value);
value = $au.imageUploaderFlash('uploaderID').restrictions().fileMask();

Property Value

Type: Array

The file mask for the files allowed to be 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 [].

See Also

Reference

Manual