Hi Parth,
Greetings
from Syncfusion support,
The reported
issue occurs since you are using the same model values for all the In-place
editor being rendered. We suggest you to update, the model value separately for
each in-place editor in the beginEdit event. Check the below sample for reference.
<ejs-inplaceeditor
#inplace_editor
mode="Inline"
[popupSettings]="settings"
(beginEdit)="onbegin($event)"
type="Text"
></ejs-inplaceeditor>
onbegin(args) {
(document.activeElement as any).ej2_instances[0].model = { placeholder: 'Enter employee name' };
}
|
Sample: https://stackblitz.com/edit/angular-kfriwc-ufjrcv?file=app.component.ts
Please let
us know if the solution helps,
Regards,
Indrajith