Uploader.RestrictionFailed Event ActiveX/Java Uploader

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

This event fires when some restriction is broken.

Syntax

ASP.NET
<script type="text/javascript">
function Uploader1_RestrictionFailed(errorCode, fileName, message){
    //...your code...
}
</script>
<aur:Uploader ID="Uploader1" runat="server">
    <ClientEvents>
        <aur:ClientEvent EventName="RestrictionFailed" HandlerName="Uploader1_RestrictionFailed" />
    </ClientEvents>
</aur:Uploader>
PHP
<script type="text/javascript">
function Uploader1_RestrictionFailed(errorCode, fileName, message){
    //...your code...
}
</script>
<?php
    $Uploader = new Uploader("Uploader1");
    //...other params...
    $Uploader->getClientEvents()->setRestrictionFailed("Uploader1_RestrictionFailed");
    //...other params...
    $Uploader->render();
?>
JavaScript
function Uploader1_RestrictionFailed(errorCode, fileName, message){
    //...your code...
}
$au.uploader({
    events: {
        //...other params...
        restrictionFailed: [Uploader1_RestrictionFailed],
        //...other params...
    }
})

Parameters

errorCode

Type: Number

One of the following values:

fileName

Type: String

The name of the file which breaks the restriction.

message

Type: String

The message stating that the restriction is broken. The same message is displayed in the information bar.

See Also

Reference

Manual