Click or drag to resize
KaxProgressAreaOnClientProgressUpdating Property
Specifies the client-side function to be executed when the Progress Area status is about to be updated.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.Attribute)]
public string OnClientProgressUpdating { get; set; }

Property Value

Type: String
The default value is string.Empty.
Examples
This example demonstrates how to set a javascript function to execute when the client side progress area is about to be updated.
<kaxU:KaxProgressArea OnClientProgressUpdating="myOnClientProgressUpdating" ... />
...
<script>
function myOnClientProgressUpdating()
{
    alert("The progress will be updated");
}
</script>
See Also