Questions tagged [primeng-turbotable]

Questions about PrimeNG's TurboTable for displaying data in a table, and how to use TurboTable's API.

Questions about PrimeNG's TurboTable, which is used for displaying data in a table. Any question about how to use the table, how the table works, or related questions go here.

187 questions
1
vote
1 answer

Rename a tab in p-tabview

I have created a p-tabview with each tab containing some content using:
user2695082
  • 285
  • 4
  • 16
1
vote
1 answer

p-progressbar doesn't update value in *ngfor Angular

I use primeng 9 and angular 9 in my project. I have a p-progressbar inside a ngtemplate with an *ngfor. I think the value is not change or maybe just the component no update the UI. All of the code below is in a p-table.
Arno
  • 91
  • 2
  • 11
1
vote
1 answer

How to retain selection of checkbox after clicking cancel button in PrimeNG p-table?

I have used below code to show dialog box with Ok and cancel buttons while unselecting checkbox inside PrimeNG p-table. If anyone is trying to cancel the unselection of checkbox, then I need to retain the selection of checkbox.
RGS
  • 5,131
  • 6
  • 37
  • 65
1
vote
0 answers

How to sort on columns generated by an angular expression in primeng table?

Trying to sort a table in PrimeNG table which has a field which is generated as a multiplication of values of two other fields. My problem here is that I can't modify the object array which the table is based on but so i need to multiply them as an…
rgshenoy
  • 386
  • 1
  • 4
  • 18
1
vote
0 answers

Does ngModel or two-way binding take long time in Angular?

PrimeNG editable table with checkbox child component ...
Liem
  • 446
  • 1
  • 6
  • 20
1
vote
1 answer

Two issues when I use row editing in PrimeNG

In my angular project, I use PrimeNG. I'm trying to make the rows editable in data table so I follow the documentation to do that but I face two issues. I tried to solve them but I failed. The first one: when I click in the edit button all rows…
Mohamed Elkast
  • 307
  • 1
  • 6
  • 19
1
vote
2 answers

Primeng p-table virtual scroll display previous rows when using row grouping

I'm trying to create a p-table that has grouped rows but I'm not able to correctly apply the virtual scroll feature. p-table is part of the PrimeNg framework. The issue is when scrolling and doing a lazy loading (which, actually is just appending…
MHogge
  • 5,408
  • 15
  • 61
  • 104
1
vote
1 answer

Multiple row selection with datakey

I'm working on a project that used PrimeNg as UI library. While working with the table, I found that the datakey property does not select all the related rows. When I console log the selection array, it shows only 1 was selected. But the UI selects…
snso
  • 309
  • 7
  • 15
1
vote
1 answer

PrimeNg Table toggle cell editing

I am using primeng table and want to make a column editable on a button click. However I am unable to do this. I don't know which property I have to set in order to toggle editing. Please help. Thanks in advance. Here is my template:
rock11
  • 718
  • 4
  • 17
  • 34
1
vote
0 answers

Possibility to combine pagination with infinite scrolling

Is there a way in primeng-turbotable to combine pagination with infinite scroll? This is e. g. possible in ngx-datatable: https://swimlane.github.io/ngx-datatable/#virtual-paging.
Michael K.
  • 1,738
  • 2
  • 17
  • 35
1
vote
1 answer

PrimeNg TurboTable - Conditional Row-grouping

I am using PrimeNG's TurboTable (p-table) I have a groupField parameter, which can either be null or have a value corresponding to a column header. This param's value can be changed dynamically at any time. The expected behaviour is that when…
naman1901
  • 305
  • 4
  • 16
1
vote
0 answers

p-table rowsPerPageOptions dropdown terminates improperly

I am using PrimeNG's p-table with the rowsPerPageOptions set as follows [rowsPerPageOptions]="[25,50,100]" I can see the paginator options dropdown too, but on clicking it, the dropdown terminates abruptly on the screen. Edit: I have checked this…
naman1901
  • 305
  • 4
  • 16
1
vote
3 answers

PrimeNG p-table (TurboTable) pEditableRow error when setting up Row Editing

Cross-post warning: I have also posted this in the PrimeNG Community Forum, but I need to reach the largest audience possible. I am trying to implement Row Editing in the PrimeNG (version 7.0.4/7.0.5) TurboTable (p-table) component as demonstrated…
Cindy K.
  • 128
  • 2
  • 10
1
vote
1 answer

Sorting primeng columns

I am using a primeng table and was using their toggle method for the columns. The only issue is, with the columns when you toggle one off and back on it returns the column to the end of the table. I was wondering if anyone knew anyway to sort them…
1
vote
0 answers

How to whether Primeng Turbo Table is fully rendered in Angular 7?

I'm working on a kind of requirement wherein I need to know whether the table is fully rendered; if so then I can call the other methods which will do some processing on the rendered table. Is there any way through which we can determine that the…