Questions tagged [primeng-datatable]

Questions about the PrimeNG DataTable component from PrimeTek Informatics.

Useful Links

474 questions
0
votes
1 answer

Different Child level Headers in Primeng Treetable

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 …
0
votes
4 answers

Angular-8 : p-confirm dialog not opening on top of p-dialog of primeng

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…
Monika Kumbhar
  • 45
  • 2
  • 12
0
votes
1 answer

How may I convert primeng old dataTable to the newTurboTable?

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:
user998548
  • 175
  • 1
  • 10
0
votes
2 answers

ngModel doesn't work using primeng table with native checkbox

I'm using primeng editable table with native checkbox and ngModel.
Liem
  • 446
  • 1
  • 6
  • 20
0
votes
1 answer

How to update defaultLabel dynamically in primeNg multiselect

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
pjay
  • 385
  • 1
  • 3
  • 19
0
votes
1 answer

PrimeNG: Update Table with Filtered Values

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…
0
votes
1 answer

How can I make the tab key skip some cells/columns in cell editable p-table in prime-ng

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…
0
votes
1 answer

dataView page not set to 1 after get request

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…
Guy E
  • 1,775
  • 2
  • 27
  • 55
0
votes
2 answers

How to add action column with edit and delete option in p-dataTable (Primeng)

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:…
Sam
  • 47
  • 7
0
votes
1 answer

Primeng 4.3: Datatable column value 'S', 'N' to 'Yes' 'No'

I've these cols: this.cols = [ { field: 'acronym', header: 'Acrònim', sortable: true }, { field: 'name', header: 'Nom', sortable: true }, { field: 'commonUserName', header: 'Credencial', sortable: true }, { field: 'scope', header:…
Jordi
  • 20,868
  • 39
  • 149
  • 333
0
votes
1 answer

Primeng Datatable 4.3: Cell editor content missed

I'm using primeng 4.3 I've coded this primeng datatable:
Jordi
  • 20,868
  • 39
  • 149
  • 333
0
votes
1 answer

Scrollable PrimeNG table breaks body width when all expandable rows are collapsed

:-) 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…
Ruik
  • 1,222
  • 1
  • 20
  • 36
0
votes
1 answer

Primeng database numeric edition

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:
Jordi
  • 20,868
  • 39
  • 149
  • 333
0
votes
1 answer

Primeng 4 datatable global filter

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.
karthi
  • 889
  • 12
  • 24
0
votes
0 answers

Efficient pagination where the database is SQL Server and front-end is angular

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…
Subhendu Mahanta
  • 961
  • 1
  • 18
  • 44