Class DateRangePickerEvents<TValue>
Specifies the DateRangePicker Events of the component.
Inherited Members
Namespace: Syncfusion.Blazor.Calendars
Assembly: Syncfusion.Blazor.dll
Syntax
public class DateRangePickerEvents<TValue> : SfBaseComponent
Type Parameters
Name | Description |
---|---|
TValue | Specifies the type of DateRangePickerEvents. |
Constructors
DateRangePickerEvents()
Declaration
public DateRangePickerEvents()
Properties
Blur
Triggers when the input loses the focus.
Declaration
public EventCallback<BlurEventArgs> Blur { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<BlurEventArgs> |
Cleared
Triggers when daterangepicker value is cleared using clear button.
Declaration
public EventCallback<ClearedEventArgs> Cleared { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ClearedEventArgs> |
Created
Triggers when DateRangePicker is created.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Destroyed
Triggers when DateRangePicker is destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Focus
Triggers when the input gets focus.
Declaration
public EventCallback<FocusEventArgs> Focus { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<FocusEventArgs> |
Navigated
Triggers when the Calendar is navigated to another view or within the same level of view.
Declaration
public EventCallback<NavigatedEventArgs> Navigated { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<NavigatedEventArgs> |
OnClose
Triggers when the popup is closed.
Declaration
public EventCallback<RangePopupEventArgs> OnClose { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<RangePopupEventArgs> |
OnOpen
Triggers when the popup is opened.
Declaration
public EventCallback<RangePopupEventArgs> OnOpen { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<RangePopupEventArgs> |
OnRenderDayCell
Triggers when each day cell of the Calendar is rendered.
Declaration
public EventCallback<RenderDayCellEventArgs> OnRenderDayCell { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<RenderDayCellEventArgs> |
RangeSelected
Triggers on selecting the start and end date.
Declaration
public EventCallback<RangePickerEventArgs<TValue>> RangeSelected { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<RangePickerEventArgs<TValue>> |
ValueChange
Triggers when the Calendar value is changed.
Declaration
public EventCallback<RangePickerEventArgs<TValue>> ValueChange { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<RangePickerEventArgs<TValue>> |
Methods
OnInitializedAsync()
Triggers while initial rendering of the component.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |