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.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string OnClientAdded { get; set; }
Public Property OnClientAdded As String
Get
Set
public:
property String^ OnClientAdded {
String^ get ();
void set (String^ value);
}
member OnClientAdded : string with get, set
Property Value
Type:
StringThe 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.
<kaxU:KaxUpload OnClientAdded="myOnClientAdded" ... />
...
<script>
function myOnClientAdded()
{
alert("You just added a new file input.");
}
</script>
<kaxU:KaxUpload OnClientAdded="myOnClientAdded" ... />
...
<script>
function myOnClientAdded()
{
alert("You just added a new file input.");
}
</script>
See Also