Server Side Events
3 May 20171 minute to read
The server side event present in the Dialog control is as follows.
Event Name | Description | Arguments |
---|---|---|
OnComplete | Triggered when the value defined in progress bar sets completely. |
|
In an ASPX page, add the ProgressBar control with OnComplete server side event as shown in the following code example.
<ej:ProgressBar ID="progressbar" runat="server" OnComplete="onComplete" Value="70" Text="70 %" Height="20" Width="500">
</ej:ProgressBar>
In the code behind define the action to be performed.
protected void onComplete(object Sender, EventArgs e)
{
Response.Write("Server side event has been triggered");
}