How can I implement a primeng tree table with different child level header?
I am using angular 7 and primeng V7
Data is like below:
{
"label":"Parent 1",
"data":{
"name":"Parent 1"
},
"children": this.resultData1
…
Angular 8 +primeng 8
We have used Primeng package
Issue : When we try to open confirm dialog of Primeng from p-dialog then its not opening. But when we try to open confirm dialog directly from page itself then it opens correctly.
Even we tried to…
Trying to convert old primeNG dataTable to the new primeNG TurboTable for an old application, it seems we can't use p-column anymore, here is the code that is giving me trouble any help would be appreciate it:
In primeNg multiselect I'm unselecting the items from ts file, I can able to unselect but this will not gets updated in the input field.
someComponent.html
I am trying to filter data that is being stored in a dropdown. The filter box is supposed to outside of the drop down options so I needed to create a custom filtering function. I take the input string (such as "Jan") and try to find the matching…
I have the requirement for an cell editable table, where the keyboard navigation will skip certain cells, but I need the cells to be editable if the user were to click on them.
There are 3 columns. When the user tabs out of the last editable field…
I'm having a p-dataView (PrimNG) with paging that working fine except for some paging issue.
If I page to a page other than 1 and then make a call to the rest api and recieve the data, the dataView is still on the same page instead of setting it to…
I am using primeng ver 5, want to add edit and delete column to primeng datatable.
code to create datatable is given below
component
this.cols = [
{ field: 'id', header: 'Id' },
{ field: 'fname', header: 'First Name' },
{ field:…
:-)
I use 2 features of the PrimeNG table (, Version 8) in combination:
Scroll
Row expansion
This works quite well as long as the table is indeed scrollable:
But when to many rows are collapsed the table is smaller than the threashold…
NOTE: I'm using primeng 4.3.0
I've an Array where AlignedQuote is:
interface AlignedQuote {
hour: number;
day: number;
month: number;
year: number;
}
My current related html code is:
I have used primeng 4 datatable in my project. I have used the global filter feature. I wanted the global filter to start filtering only after entering 3 characters. How to achieve this.
In my web application page loads very slowly because the SQL that drives the page at the backend executes very slowly. rownumber() was used but that did not improve the situation.I understand that keyset pagination is most efficient. I have read…