Server actions in Angular Inplace editor component

27 Apr 20245 minutes to read

By passing In-place Editor component value to the server, the primaryKey property value must require, otherwise action not performed for remote data.

If the URL property value is empty, data passing will handled at local and also the actionSuccess event will trigger with null as argument value.

The following arguments are passed to the server when submit actions perform.

Arguments Explanations
value For processing edited value, like DB value updating.
primaryKey For value mapping to the server, like selecting DB.
name For field mapping to the server, like DB column field mapping.

Find the following sample server codes for defining models and controller functions to configure processing data.

    public class SubmitModel
        {
            public string Name { get; set; }
            public string PrimaryKey { get; set; }
            public string Value { get; set; }
        }
public IEnumerable<SubmitModel> UpdateData([FromBody]SubmitModel value)
        {
         // User can process data
          return value;
        }
  • Server actions successfully done, the actionSuccess event will be fired with returned server data.

  • If the server is not responding, the actionFailure event will be fired with data, but value not updated in the Editor.

In the following sample, the actionSuccess event will trigger once the value submitted successfully into the server. In this sample, both actionSuccess and actionFailure were configured and resulted value will be converted to chips.

import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { InPlaceEditorAllModule } from '@syncfusion/ej2-angular-inplace-editor'



import { Component, ViewChild } from '@angular/core';
import { InPlaceEditorComponent, ActionEventArgs } from '@syncfusion/ej2-angular-inplace-editor';

@Component({
imports: [
         InPlaceEditorAllModule
    ],


standalone: true,
    selector: 'app-root',
    template: `
    <div id='container'>
        <span class="content-title"> Select frameworks: </span>
        <ejs-inplaceeditor #element id="element" data-underline="false" type="MultiSelect" mode="Inline" [value]="value" [model]="model" name="skill" [url]="url" primaryKey="FrameWork" adaptor="UrlAdaptor" (created)="created()" (actionSuccess)="actionSuccess($event)" (actionFailure)="actionFailure($event)"></ejs-inplaceeditor>
    </div>
    `
})

export class AppComponent {
    @ViewChild('element') editObj?: InPlaceEditorComponent;
    public value: string[] =  ['JavaScript', 'jQuery'];
    public url = 'https://ej2services.syncfusion.com/development/web-services/api/Editor/UpdateData';
    public frameWorkList: string[] = ['Android', 'JavaScript', 'jQuery', 'TypeScript', 'Angular', 'React', 'Vue', 'Ionic'];
    public model: object = { mode: 'Box', dataSource: this.frameWorkList, placeholder: 'Select skill' };
    chipOnCreate() {
        (this.editObj?.element.querySelector('.e-editable-value') as Element).innerHTML = this.chipCreation(this.editObj?.value, true);
    }
    public actionSuccess(e: ActionEventArgs): void {
        e.value = this.chipCreation(e.value.split(','), true);
    }
    public actionFailure(e: ActionEventArgs): void {
        e.value = this.chipCreation(e.value.split(','), false);
    }
    public created(): void {
        this.chipOnCreate();
    }
    chipCreation(data: any, isSuccess: boolean): string | any {
        let value = '<div class="e-chip-list">';
        [].slice.call(data).forEach((val: string) => {
            value += '<div class="e-chip"> <span class="e-chip-text' + (isSuccess ? '' : 'e-highlight') + '"> ' + val + '</span></div>';
        });
        value += '</div>';
        return value;
    }
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));