Posts

Showing posts with the label savechanges

Editable field saved to database

Image
Clash Royale CLAN TAG #URR8PPP Editable field saved to database I've got this editable field. I need it to save the new data and store it in the database. HTML: <ng-container *ngIf="groupedVolumes"> <ng-container *ngFor="let model of groupKeys() | slice:-3" > <tr> <th class="model">{{ carValues(model)[0].model }}</th> <ng-container *ngFor="let value of carValues(model)"> <td contenteditable='true' class="data"> {{ value.scheduledVolume }} </td> </ng-container> </tr> </ng-container> </ng-container> The HTML data sh...