You can define the native event using on event
attribute in component. The value of attribute is treated as an event handler. The event specific data will be available in event arguments.
The different event argument types for each event are,
We have provided the following native event support to the Progress Button component:
List of Native events | |||
---|---|---|---|
onclick | onblur | onfocus | onfocusout |
onmousemove | onmouseover | onmouseout | onmousedown |
ondblclick | onkeydown | onkeyup | onkeypress |
ontouchend | onfocusin | onmouseup | ontouchstart |
The onclick
attribute is used to bind the click event for Progress Button. Here, we have explained about the sample code snippets of Progress Button.
@using Syncfusion.Blazor.SplitButtons
<SfProgressButton IsPrimary="true" @onclick="onClick" Content="Spin Left"></SfProgressButton>
@code {
private void onClick(Microsoft.AspNetCore.Components.Web.MouseEventArgs args)
{
//onclick Event triggered
}
}