307,231 questions
0
votes
1
answer
26
views
How to create smoothly expand/collapse panel using pure CSS?
I create expand/collapse panel that work fine. I use angular for click event handle and pure CSS for styling.
There is a LIVE DEMO.
However this panel doesnt open/close smoothly. Please help my to add ...
1
vote
2
answers
20
views
Importing style library
I have a library just for styling and it has the following structure:
@mylib/
├── projects/
│ └── my-style-lib/
│ ├── src/
│ │ ├── lib/
│ │ │ └── ... (arquivos padrão da ...
1
vote
0
answers
24
views
Angular 18 Error: NG0203: inject() must be called from an injection context such as a constructor, a factory function, a field initializer, or a fu
I am updating an Angular Application from version 17.3.10 to version 18.2.13.
I did several steps, and tried to update all packages so that the work with the newer Version.
Now I get the Error at the ...
1
vote
1
answer
22
views
SetValue is not triggering Dropdown's (change) function
In Angular 19, I need a function to run when a dropdown changes value. However, it doesn't happen when using setValue.
html
<select id="dropdown" [formControl]="dropdown" (...
0
votes
0
answers
33
views
chunk-.js error after angular/spartacus upgrade
We are in the process of upgrading Spartacus Composable Storefront from 2211.32 to 2211.37. Spartacus 2211.32 is working fine with no issues and we did the upgrade to 2211.37 which is working fine on ...
1
vote
2
answers
35
views
Rethrowing Errors When Using forkJoin
I'm working on an Angular (v18) SPA app. I have an API service with a get call:
public get(route: string, params?: HttpParams): Observable<any> {
const headers = {
method: 'GET'
}...
-4
votes
1
answer
16
views
Angular Workspaces vs NPM/PNPM/Yarn Workspaces [closed]
Is there any guidance on using Angular Workspaces/Projects vs using npm/pnpm/yarn workspaces? What do you lose by not using Angular workspaces?
1
vote
0
answers
51
views
Copilot workspace with VS-code throws an error "Language model unavailable"
enter image description herewhile using Copilot workspace with VS-code it throws an error "Language model unavailable" everytime I try to use the copilot search model. anyidea how to fix ...
0
votes
0
answers
18
views
ESRI's Sketch: property 'toolbarKind' is showing as docked when set to floating
I've got an angular project that uses ESRI and the JavaScript SDK. The Sketch widget is displaying the 'docked' behavior when its 'toolbarKind' property is actually set to 'floating'.
We set it like ...
1
vote
1
answer
64
views
Why is it easy to check .closed on manual RxJS subscriptions, but not with takeUntilDestroyed() in Angular?
I am using RxJS for subscriptions in Angular. I noticed that when I manually subscribe to an observable and store the Subscription, I can easily check if it was unsubscribed using .closed, especially ...
0
votes
1
answer
23
views
Depending dropdown in angular material table for each single row
I have a material table with 2 dropdown columns. I need to filter the second dropdown based on value selected on the first drop down.
The values of the first drop down are fixed, the values of the ...
1
vote
0
answers
16
views
Why doesn't the [frozenColumns] feature in PrimeNG work with dynamic columns?
I am using this feature to freeze some columns in the table but these features are not applied and not working properly.
// html Code
<p-table [value]="products" [columns]="colsProd&...
5
votes
5
answers
163
views
How to filter user input in Angular?
I want to filter user input when they type in an HTML text input.
I can do that in native HTML/JavaScript as shown in the following demo:
<form>
<label for="tracking">...
0
votes
0
answers
7
views
Issues with aspnetcore-browser-refresh.js in a non-Visual Studio created project
I recently converted an old Angular application that was created in Visual Studio to a nx created Angular app. Long story, but basically I created the app using nx, then added an esproj so that the ...
1
vote
0
answers
16
views
How to integrate an angular application in another angular application in an iframe
I'm trying to display an angular application B into another angular application A, both served locally.
In the container app, I simply add ann iframe in the main component.
<iframe src="http:/...