Dynamically Move In-place Editor to Edit Mode in Blazor
28 Jan 20222 minutes to read
At component initial load, you can open the editor state without interacting with the In-place Editor input element by configuring the EnableEditMode
property to true
.
In the following example, editor opened at initial load and when toggling a checkbox, it will remove or open the editor.
@using Syncfusion.Blazor.InPlaceEditor
@using Syncfusion.Blazor.Buttons
@using Syncfusion.Blazor.Inputs
<table class="table-section">
<tr>
<td> EnableEditMode: </td>
<td>
<SfCheckBox @bind-Checked="@EditModeEnable" Label="Disable" ValueChange="OnChange" TChecked="bool"></SfCheckBox>
</td>
</tr>
<tr>
<td class="sample-td"> Enter your name: </td>
<td class="sample-td">
<SfInPlaceEditor @bind-Value="@TextValue" EnableEditMode="EditModeEnable" TValue="string" ActionOnBlur="ActionBlur.Ignore">
<EditorComponent>
<SfTextBox @bind-Value="@TextValue" Placeholder="Enter some text"></SfTextBox>
</EditorComponent>
</SfInPlaceEditor>
</td>
</tr>
</table>
<style>
.table-section {
margin: 0 auto;
}
tr td:first-child {
text-align: right;
padding-right: 20px;
}
.sample-td {
padding-top: 10px;
min-width: 230px;
height: 100px;
}
</style>
@code {
public bool EditModeEnable { get; set; } = true;
public string TextValue { get; set; } = "Andrew";
private void OnChange(Syncfusion.Blazor.Buttons.ChangeEventArgs<bool> args)
{
this.EditModeEnable = args.Checked;
this.StateHasChanged();
}
}