I need to enable inline adding of a row to primeng datatble. Please help. I need to add new row of text boxes or combination of text boxes and selection lists as a new row to prime ng datatable upon clicking add new button instead of opening pop up and accepting values
App.component.html:-
<div>
<p-dataTable [value]="cars" [editable]="true" [paginator]="true" [rows]="10" [responsive]="true">
<header>CRUD for Cars</header>
<p-column field="vin" header="Vin" [sortable]="true" [editable]="true"></p-column>
<p-column field="year" header="Year" [sortable]="true" [editable]="true"></p-column>
<p-column field="brand" header="Brand" [sortable]="true" [editable]="true"></p-column>
<p-column field="color" header="Color" [sortable]="true" [editable]="true"></p-column>
<footer><div class="ui-helper-clearfix" style="width:100%"><button type="button" pButton icon="fa-plus" style="float:left" (click)="showDialogToAdd()" label="Add"></button></div></footer>
</p-dataTable>
<p-dialog header="Car Details" [(visible)]="displayDialog" [responsive]="true" showEffect="fade" [modal]="true">
<div class="ui-grid ui-grid-responsive ui-fluid ui-grid-pad" *ngIf="car">
<div class="ui-grid-row">
<div class="ui-grid-col-4"><label for="vin">Vin</label></div>
<div class="ui-grid-col-8"><input pInputText id="vin" [(ngModel)]="car.vin" /></div>
</div>
<div class="ui-grid-row">
<div class="ui-grid-col-4"><label for="brand">Year</label></div>
<div class="ui-grid-col-8"><input pInputText id="brand" [(ngModel)]="car.year" /></div>
</div>
<div class="ui-grid-row">
<div class="ui-grid-col-4"><label for="brand">Brand</label></div>
<div class="ui-grid-col-8"><input pInputText id="brand" [(ngModel)]="car.brand" /></div>
</div>
<div class="ui-grid-row">
<div class="ui-grid-col-4"><label for="color">Color</label></div>
<div class="ui-grid-col-8"><input pInputText id="color" [(ngModel)]="car.color" /></div>
</div>
</div>
<footer>
<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<button type="button" pButton icon="fa-close" (click)="delete()" label="Delete"></button>
<button type="button" pButton icon="fa-check" (click)="save()" label="Save"></button>
</div>
</footer>
</p-dialog>
</div>
app.component.ts:-
import {Component} from '@angular/core';
import {Car} from './cars/car';
import {CarService} from './cars/carservice';
class PrimeCar implements Car {
constructor(public vin?, public year?, public brand?, public color?) {}
}
@Component({
templateUrl: 'app/app.component.html',
selector: 'my-app'
})
export class AppComponent {
displayDialog: boolean;
car: Car = new PrimeCar();
selectedCar: Car;
newCar: boolean;
cars: Car[];
constructor(private carService: CarService) { }
ngOnInit() {
this.carService.getCarsMedium().then(cars => this.cars = cars);
}
showDialogToAdd() {
this.newCar = true;
this.car = new PrimeCar();
this.displayDialog = true;
}
save() {
if(this.newCar)
this.cars.push(this.car);
else
this.cars[this.findSelectedCarIndex()] = this.car;
this.car = null;
this.displayDialog = false;
}
delete() {
this.cars.splice(this.findSelectedCarIndex(), 1);
this.car = null;
this.displayDialog = false;
}
onRowSelect(event) {
this.newCar = false;
this.car = this.cloneCar(event.data);
this.displayDialog = true;
}
cloneCar(c: Car): Car {
let car = new PrimeCar();
for(let prop in c) {
car[prop] = c[prop];
}
return car;
}
findSelectedCarIndex(): number {
return this.cars.indexOf(this.selectedCar);
}
}
You can programmatically add an item to the array that you're using behind the scenes, which in your case is
cars
.I found that I had to add the
.slice()
operation at the end in order to get the data-table to refresh in the browser. I believe the issue there had to do with change detection, but I don't recall 100%.Footnote: I believe there is probably a more elegant and controlled way of adding items "inline" like you're looking for, but I'm still working on coming up with a solution on that myself.