Server actions in EJ2 JavaScript In place editor control
19 Apr 20236 minutes to read
By passing In-place Editor control 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.
ej.base.enableRipple(true);
var serviceUrl = 'https://ej2services.syncfusion.com/development/web-services/api/Editor/UpdateData';
var frameWorkList = ['Android', 'JavaScript', 'jQuery', 'TypeScript', 'Angular', 'React', 'Vue', 'Ionic'];
//Initialize In-place Editor control
var editObj = new ej.inplaceeditor.InPlaceEditor({
mode: 'Inline',
type: 'MultiSelect',
value: ['JavaScript', 'jQuery'],
name: 'skill',
url: serviceUrl,
primaryKey: "FrameWork",
adaptor: 'UrlAdaptor',
model: {
mode: 'Box',
dataSource: frameWorkList,
placeholder: 'Select skill'
},
actionSuccess: onActionSuccess,
actionFailure: onActionFailure
});
//Render initialized In-place Editor control
editObj.appendTo('#element');
chipOnCreate(); // Initialize chips customization at initial load
function chipOnCreate() {
editObj.element.querySelector('.e-editable-value').innerHTML = chipCreation(editObj.value);
}
function onActionSuccess(e) {
e.value = chipCreation(e.value.split(','), true);
}
function onActionFailure(e) {
e.value = chipCreation(e.value.split(','), false);
}
function chipCreation(data, isSuccess) {
let value = '<div class="e-chip-list">';
[].slice.call(data).forEach((val) => {
value += '<div class="e-chip"> <span class="e-chip-text' + (!isSuccess ? 'e-highlight' : '') + '"> ' + val + '</span></div>';
});
value += '</div>';
return value;
}
<!DOCTYPE html><html lang="en"><head>
<title>Essential JS 2 In-place Editor</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript In-place Editor Control">
<meta name="author" content="Syncfusion">
<link href="https://cdn.syncfusion.com/ej2/28.1.33/material.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/28.1.33/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<span class="content-title"> Select frameworks: </span>
<div id="element" data-underline="false"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>