Click or drag to resize
KaxUploadOnClientAdded Property
Gets or sets the name of the client-side function which will be executed after a new fileinput is added to a KaxUpload instance.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string OnClientAdded { get; set; }

Property Value

Type: String
The default value is string.Empty.
Examples
This example demonstrates how to create a javascript function which is called every time when the used adds a new file input to the KaxUpload instance.
[New Example]
<kaxU:KaxUpload OnClientAdded="myOnClientAdded" ... />
...
<script>
function myOnClientAdded()
{
    alert("You just added a new file input.");
}
</script>
[New Example]
<kaxU:KaxUpload OnClientAdded="myOnClientAdded" ... />
...
<script>
function myOnClientAdded()
{
    alert("You just added a new file input.");
}
</script>
See Also