All Questions
4,145 questions
0
votes
0
answers
29
views
Angular's PrimeNG button displays differently [closed]
I created a new angular application and I'm planning to use PrimeNG v19 as my UI suite. However, upon setting this up, I just can't seem to make the "test" button match the color sampled in ...
0
votes
1
answer
19
views
How to use Material icons inside Version 17 PrimeNG components & Version 17 Angular (Over-ride PrimeNG's internal limited icons)
How do i use Material icons inside Version 17 PrimeNG components & Version 17 Angular (Over-ride PrimeNG's internal limited icons) ???
I watched this youtube video of Official PrimeNG
Video link
...
0
votes
0
answers
40
views
Tailwind Media queries ignored when coming from Angular library files
I just developed an Angular library to factorize some frontend code i'll have in several projets and i used tailwind + PrimeNg to style the app.
The media queries styles are not working properly when ...
-1
votes
0
answers
25
views
How can I replicate this POS UI layout using Angular standalone components and PrimeNG or even normal HTML and CSSS? [closed]
I'm trying to design a POS (Point of Sale) screen using Angular (v17) with standalone components and PrimeNG UI components. I've attached a screenshot of the layout I'm aiming for:
What I’ve done so ...
1
vote
1
answer
42
views
How to trigger PrimeNG <p-fileUpload> file dialog by clicking a custom icon?
I’m using Angular 18 and PrimeNG 17.x, and I want to open the file upload dialog of a component when I click a custom icon, like a file-excel icon.
What I Tried
I tried two methods:
Calling .choose() ...
-1
votes
0
answers
44
views
theme.css, primeng.min.css, primeflex.css are not loading its coming 404 error in the network when i check . Using Angular 18 and primeng 17 [closed]
theme.css, primeng.min.css, primeflex.css are not loading its coming 404 error in the network when i check . Using Angular 18 and checkd with all the primeng version from 16 to 19. sAme issue persists ...
2
votes
1
answer
133
views
PrimeNG 19 styles not being applied
I'm creating a new Angular 19 project using PrimeNG 19 and Tailwind CSS v4. I followed both the Tailwind and PrimeNG installation guides. However, when I run my application, the PrimeNG styles are not ...
0
votes
0
answers
39
views
Primeng editable table - edit cancel controls
I use Primeng p-table with edit mode via p-cellEditor however I face multiple issues which makes the table unusable in real world. (you can test this behavior in official example https://primeng.org/...
0
votes
0
answers
31
views
PrimeNG component is not rendering
Summary
I'm having an issue with component rendering. Having and issue like on the screenshot.
Screenshot 2025-04-04 at 10 45 08
Using library of custom components with PrimeNG.
Many thanks for your ...
1
vote
1
answer
34
views
How to handle the invalid date in Prime ng Calendar
After selecting the date from calendar picker, when editing/input the dates, need to handle some validation.
Below is the scenario:
Selected april 30 2025 from the picker.
Edited the date to 31st ...
1
vote
1
answer
51
views
Trying to project ng-template into component
I have an angular 19 application and components app-dashboard, app-table. I'm also using PrimeNG components and i want to project ng-template into app-table component:
@Component({
selector: 'app-...
0
votes
0
answers
51
views
PrimeNG Mega Menu open submenu on hover
I am attempting to use the PrimeNG mega menu: https://primeng.org/megamenu But I want the sub menu to open on hover instead of click. This is what I'm trying to do:
<div class="menu-wrap"&...
0
votes
0
answers
32
views
In my ionic angular project, I have included a primeNG tree. In my tree, the toggle buttons are not getting indented
This is my html code. I have put indentation to the nodes using typescript, but toggle button are not getting indented.
<p-tree [value]="treeData" selectionMode="single" [...
0
votes
1
answer
48
views
How does PrimeNG use classes to display icons instead of HTML tags?
I was reading through the GitHub project and noticed that icons extend from a BaseIcon class, which in turn extends from a BaseComponent. From what I saw, you can use the selector, for example, <...
0
votes
1
answer
48
views
Primeng datepicker repeatedly causes change detection when i use ngModel
I have a datepicker which repeatedly triggers change detection whenever ngModel is being used (not even ngModelChange, just the input). This happens on ChangeDetectionStrategy.OnPush or Default.
This ...