I have an Angular project and igx grid with editable rows. The grid data comes from SQL server database.
Is it possible to update the database when cells from the igx grid are edited? Is there any tutorial (because I am searching all day and did not find anything)? I have Angular version 12, Visual Studio 2019, and I am writing in C#.
Here is the HMTL code for my igx grid.
<igx-grid width="80%" [data]="posts" height="600px" style="margin: auto"
[allowFiltering]="true">
<igx-column field="id" [dataType]="number" header="ID" [sortable]="true" [movable]="true"></igx-column>
<igx-column field="name" [dataType]="'string'" header="Name" [sortable]="true" [movable]="true" [editable]="true"></igx-column>
<igx-column field="familyname" [dataType]="'string'" header="Family Name" [sortable]="true" [movable]="true" [editable]="true"></igx-column>
</igx-grid>