All Questions
20,490 questions
-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() ...
0
votes
1
answer
46
views
How to use httpResource to fetch a text file and use the fetched data to show in HTML
I am experimenting with httpResource, I am trying to fetch an text file using the new httpResource method, but I am not sure how to convert the fetched text file to render in an textarea tag.
Angular....
0
votes
1
answer
51
views
How to use httpResource to fetch an image and render in HTML as a URL
I am experimenting with httpResource, I am trying to fetch an image using the new httpResource method, but I am not sure how to convert the fetched image render in an img tag.
Below is a sample of ...
1
vote
3
answers
61
views
Angular material - browser autofill changes input styles
Currently I'm facing the issue that occurs after web browser auto fills the user input like in this screen:
I tried it on two browsers and it looks simaliar (chrome adds white background and firefox ...
0
votes
0
answers
46
views
Safari/WebKit text repaint issue when popover is shown in Angular app
The following bug/issue is only on webkit/safari , the issue does not occur in chrome/firefox. I'm using angular as my frontend. The issue is i have list of details when i click the 3 dots in one of ...
0
votes
0
answers
59
views
How do I add something like <input type = "color"> for my quill toolbar's option to change the font color and add css to it?
`So, I came across this problem, where I was required to implement a full range of color options for quill toolbar. Context: It is from ngx-quill, and using in Angular.
Followed this post: [https://...
-1
votes
0
answers
75
views
How to prevent custom sidenav content from overflowing the viewport in Angular?
In an Angular application, I currently have the following structure. Until now, I was trying to use the mat-sidenav-container.
However, with the Angular Material sidenav, I wasn't able to properly ...
0
votes
1
answer
57
views
How to replace self iframe with a new app
I have a parent application that embeds my Angular landing page inside an (iframe-div). This landing page displays icons for multiple apps. When a user clicks an icon, I want to:
Replace the current ...
1
vote
0
answers
47
views
What is the best way to keep my deck components responsive and centered on the designated areas for multiple screen sizes with tailwind? [closed]
I'm trying to find a way to keep my deck components centered on the designated areas on my background image(play mat) when scaling to different screen sizes using tailwind. I have it working for my ...
0
votes
0
answers
45
views
Angular Compound Dropdown Component Loses Selection on Subsequent Choices
I'm creating a compound dropdown component in Angular where items can contain custom components. The initial selection works, but subsequent selections clear the previous choice. Here's my ...
0
votes
0
answers
28
views
Title tag not not working after Spartacus upgrade
We recently upgraded to Spartacus 2211.32.1 and I noticed that the title attribute is not working anymore. It was working fine for the previous version. Not sure if its Spartacus, Chrome or Angular ...
3
votes
2
answers
93
views
Angular grid layout behaviour
I am new to using angular.
When using a grid layout I am not getting what I want. To debug I created the following element:
<div *ngFor=" let tableVersionHeader of tableVersion.xAxis....
1
vote
0
answers
33
views
How to use SafeHtml & DomSanitizer to display dynamic HTML content from server inside tooltips in Angular application
We are trying to show HTML that comes from the database/server inside our Angular application using the [innerHTML] and SafeHtml approach.
Here is the flow...
Data comes from the server into the ...
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-...