i have used lazy loading in my application and also i want to use the sorting of the items.
If i don't use lazy loading it works fine, but i want the application to work in both lazy loading and sorting. Can anyone help me to solve…
So there we are.. Again ;)
I have a PrimeNG Data Table with some Simple Data and a Service that gets API Data.
So I'am Pretty New to Angular and cant figure why my Table View isn't Updated on change for instance when I'am adding a entry.
Would by…
I'm trying to add a span with a tooltip to a column header using PrimeNG version 4.30.
According to this issue, it should be done using pTemplate decorator in a template element (later deprecated in favor of ng-template). The type="body" templates…
I am working with PrimeNG datatable and Angular 4. I am getting the data from server and assigning it to the table reference.
@ViewChild('tableRef') table;
this.http.callDataFromServer()
.subscribe((data) => {
this.table = data;
…
I'm using PrimeNg datatable and i want to use multi columns filtering(server side).
Now It is working perfect with server side individual column filtering.
I found alot but didn't find much. Please help me out.
Thanks in advance
I am using primeNg to implement custom sort for "Quarterly Results" field.
The date in the "Quarterly Results" field is as below:
Q3-2017
2018
2017
Q1-2016
2000
Q3-2018
Q2-2012
Source : https://primefaces.org/primeng/#/table/sort
To sort…
I am using primeNG p-Calendar Control and AutoComplete. Here is my Code (blunker) (click on edit then save")
I have two issues:
I can't get the newly selected Date for whatever reason..no matter
what I do I always get the old date.
I need to be…
I am using angular2. I have a datatable. I am able to edit particular cell when I click on it. But I also want the last column to appear for that particular row whose cell I am editing.
Suppose I want to edit the 1st row 2nd element. Basically 2nd…
How to assign current iteration item to ngModel inside pTemplate="header" ?
I am trying to achieve this on UI
If all the checkbox in a column are selected, the checkbox in the header should be selected as well.
If any checkbox in a column is…
I'm trying to conditionally assign a css class to a row group header that's from PrimeNG's p-datatable.
I've tried using ngClass inside of the ng-template tag but that doesn't work because the rowData object is undefined. Here's what that looks…