Hi Juan,
Thanks for contacting Syncfusion support.
We have analyzed your query and your given code example. In your given code example you have not enable the allowDeleting property of editSettings in ejGrid control. This is the root cause of your issue “Deleted record doesn’t get disappear from the Grid”.
So, we suggest you to enable the allowDeleting property in ejGrid control.
Refer the below code example.
<script type="text/javascript">
$(function () {
$("#Grid").ejGrid({
----
allowPaging:true,
editSettings: {allowEditing: true, allowAdding: true, allowDeleting: true },
columns: [
---
]
});
});
</script>
|
Refer the help documentation.
Regards,
Thavasianand S.