Class InPlaceEditorEvents<TValue>
Configures the handler to handle the In-place Editor's events.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
InPlaceEditorEvents<TValue>
Assembly: Syncfusion.Blazor.dll
Syntax
public class InPlaceEditorEvents<TValue> : SfBaseComponent
Type Parameters
Constructors
InPlaceEditorEvents()
Declaration
public InPlaceEditorEvents()
Properties
BeginEdit
Event triggers before changing edit mode from default.
Declaration
public EventCallback<BeginEditEventArgs> BeginEdit { get; set; }
Property Value
CancelClick
Declaration
public EventCallback<object> CancelClick { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
Created
Event triggers once the component rendering is completed.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
Destroyed
Event triggers when the component gets destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
OnActionBegin
Event triggers before the data is submitted to the server.
Declaration
public EventCallback<ActionBeginEventArgs<TValue>> OnActionBegin { get; set; }
Property Value
OnActionFailure
Event triggers when data submission is failed.
Declaration
public EventCallback<ActionEventArgs<TValue>> OnActionFailure { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<ActionEventArgs<TValue>> |
|
OnActionSuccess
Event triggers when the data is submitted successfully to the server.
Declaration
public EventCallback<ActionEventArgs<TValue>> OnActionSuccess { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<ActionEventArgs<TValue>> |
|
OnSanitizeHtml
Declaration
public EventCallback<BeforeSanitizeHtmlArgs> OnSanitizeHtml { get; set; }
Property Value
SubmitClick
Declaration
public EventCallback<object> SubmitClick { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
Validating
Declaration
public EventCallback<object> Validating { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
ValueChange
Event triggers when the integrated component value has changed.
Declaration
public EventCallback<ChangeEventArgs<TValue>> ValueChange { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<ChangeEventArgs<TValue>> |
|
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
Syncfusion.Blazor.SfBaseComponent.OnInitializedAsync()