KaxProgressAreaOnClientProgressUpdating Property |
Specifies the client-side function to be executed when the Progress Area status is about to be updated.
Namespace: Kettic.AspNet.ControlsAssembly: 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; }
<PersistenceModeAttribute(PersistenceMode.Attribute)>
Public Property OnClientProgressUpdating As String
Get
Set
public:
[PersistenceModeAttribute(PersistenceMode::Attribute)]
property String^ OnClientProgressUpdating {
String^ get ();
void set (String^ value);
}
[<PersistenceModeAttribute(PersistenceMode.Attribute)>]
member OnClientProgressUpdating : string with get, set
Property Value
Type:
StringThe 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>
<kaxU:KaxProgressArea OnClientProgressUpdating="myOnClientProgressUpdating" ... />
...
<script>
function myOnClientProgressUpdating()
{
alert("The progress will be updated");
}
</script>
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also