Class InPlaceEditorSaveButton
Represents the save button for the Syncfusion.Blazor.InPlaceEditor, allowing users to confirm and save their changes.
Inherited Members
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class InPlaceEditorSaveButton : InPlaceEditorButtton
Remarks
This component is typically used within the SfInPlaceEditor<TValue> to define the appearance and behavior of the save button.
Examples
A simple In-place Editor with a custom save button.
<SfInPlaceEditor>
<InPlaceEditorButtons>
<InPlaceEditorSaveButton Content="Apply" />
</InPlaceEditorButtons>
</SfInPlaceEditor>
Constructors
InPlaceEditorSaveButton()
Declaration
public InPlaceEditorSaveButton()
Methods
Dispose()
Releases the unmanaged resources used by the component.
Declaration
public virtual void Dispose()
Dispose(Boolean)
Releases the unmanaged resources used by the component and optionally releases the managed resources.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
|
OnParametersSetAsync()
A protected method that is invoked when the component has received parameters from its parent component.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing the asynchronous operation. |
Remarks
This method updates the parent Syncfusion.Blazor.InPlaceEditor with the current instance of the save button.