All Questions
1,237
questions
1
vote
1
answer
25
views
cannot use ng select component in my angular application
In my angular application i was trying to use ng-select for showing drop downs. my angular version is 17 and it only supports ng select v12.
i use standalone components in my application , when i am ...
0
votes
1
answer
21
views
fControl.get is not a function in angular unit test
Trying to write an unit test for changeFunctionalityStatus(). facing the issue like fControl.get is not a function .
Stuck with this Anyone pls help me why this issue coming. TIA
...
1
vote
0
answers
47
views
How can i fix that code inside my angular component?
I'm using Taiga UI to create a component for a project in Angular. When I try to reuse a button component with a DropDownElement, the button is not be displayed and the console displays the following ...
0
votes
1
answer
51
views
I am using angular kolkov editor using formcontrol, have to bind html in my editor
html code:
<angular-editor [placeholder]="'Enter task...'" formControlName="task_note" [config]="editorConfig">
</angular-editor>
<div class="icon" style="cursor: pointer" (...
-1
votes
2
answers
37
views
ERROR NG8002: Can't bind to 'formGroup' since it isn't a known property of 'form'. [plugin angular-compiler]
I have the following error when I run the ng serve command:
error
This is my directory structure:
structure
app.component.html:
component html
app.component.ts:
component ts
app.module.ts:
module ts
...
0
votes
1
answer
32
views
Is It Acceptable for a Shared Component to Interact with the Data Access Layer in Angular App with Feature-Based Architecture?
I have an Angular application following a Feature-Based Architecture. I need to create a shared component that will be used across multiple feature components. This shared component should call an API ...
0
votes
1
answer
28
views
How to restrict user from opening the succeeding accordions until the form in current accordion is valid in Angular Material?
I have a requirement where I have forms in expansion panels, and I need to allow the user to navigate to succeeding accordions only after the form in the current accordion is filled.
For example, if ...
0
votes
1
answer
63
views
Object.defineProperty called on non-object
When I add provideEffects to my module, I encounter an error. However, when I remove it, the auth.effects.ts file doesn't work as expected and fails to make API calls:
However I get this error:
at ...
1
vote
1
answer
96
views
How to bind a dynamic value to index.html file content in Angular?
I have a simple web application which is developed by Angular 18. I am going to bind a dynamic attribute to the <html> tag in the index.html file as follows:
<!doctype html>
<html lang=&...
0
votes
1
answer
53
views
How to display full text on hover in ngx-select when option text is too long?
I am using Angular 7 and have an ngx-select dropdown where the options are retrieved from a database. The code is as follows:
<div class="col-lg-6">
<ngx-select class="form-...
1
vote
0
answers
68
views
Angular Libraries: 'rootDir' is expected to contain all source files
A question, I don't know if this happens to anyone, I don't know how to fix it.
From an entrypoint (a component) I want to import the model of the other, but I get the error:
File is not under '...
1
vote
1
answer
81
views
Angular Scroll Function Not Working for the Last Section of the Page
I'm working on an Angular application where I have a function that scrolls to a specific section on the page. The scrolling works fine for sections 1 through 3, but for some reason, it doesn't scroll ...
2
votes
2
answers
72
views
Angular Front-end editing picture problem
So i am currently working on a web application that i can add user which has name last name age born date and a picture .And after i create a user i can delete and edit it . My problem is when i ...
0
votes
1
answer
251
views
Authorization header with JWT in Angular to all requests
I am writing my first project to try my skills in Spring Boot and Angular.
I have three endpoints:
/register - this endpoint can access every person
/login - this endpoint can access every person, ...
1
vote
1
answer
189
views
Animating a progress bar styled as a dotted line
I'm creating a progress/volume bar component with Angular/Tailwind where the percentage increments are colored circles. All gray circles means 0%, all blue means 100%, 10 out of 20 means 50%, etc.
I ...