Having trouble getting help?
Contact Support
Contact Support
Dynamic edit mode in Angular Inplace editor component
27 Apr 20242 minutes to read
At component initial load, if you want to open editor state without interacting In-place Editor input element, it can be achieved by configuring the enableEditMode property to true
.
In the following sample, editor opened at initial load and when toggling a checkbox, it will remove or open the editor.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { InPlaceEditorAllModule } from '@syncfusion/ej2-angular-inplace-editor'
import { CheckBoxModule, ButtonModule } from '@syncfusion/ej2-angular-buttons'
import { Component, ViewChild } from '@angular/core';
import { InPlaceEditorComponent } from '@syncfusion/ej2-angular-inplace-editor';
import { ChangeEventArgs } from '@syncfusion/ej2-buttons';
@Component({
imports: [
InPlaceEditorAllModule, CheckBoxModule, ButtonModule
],
standalone: true,
selector: 'app-root',
template: `
<div id='container'>
<table class="table-section">
<tr>
<td> EnableEditMode: </td>
<td>
<ejs-checkbox id="enable" label="Enable" [checked]="true" (change)="onChange($event)"></ejs-checkbox>
</td>
</tr>
<tr>
<td class="sample-td"> Enter your name: </td>
<td class="sample-td">
<ejs-inplaceeditor #element id="element" mode="Inline" value="Andrew" enableEditMode="true" actionOnBlur="Ignore" [model]="model"></ejs-inplaceeditor>
</td>
</tr>
</table>
</div>
`
})
export class AppComponent {
@ViewChild('element') editObj?: InPlaceEditorComponent;
public model: object = { placeholder: 'Enter some text' };
public onChange(e: ChangeEventArgs): void {
(this.editObj as InPlaceEditorComponent).enableEditMode = e.checked as boolean;
this.editObj?.dataBind();
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));