All Questions
Tagged with components html
364 questions
0
votes
0
answers
34
views
Pass component as value in object Angular
I'm trying to implement a webapp in Angular 17 and I'm using a private library.
There's a searchbar that needs a specific structure to be populated:
<search-bar
[searchResults]="...
1
vote
1
answer
68
views
Why does angular base component html elements not recognize changes to data?
what am i missing here? This is a simplified example of creating an Angular 18 base component and a heir component extending it. Both are standalone. All seems fine in that the heir component sees the ...
0
votes
1
answer
54
views
Adding component via TypeScript in Angular dynamically
I searched the internet for a solution but I can't find one, either because some functions are deprecated or do not exist. I'm trying to automatically output dynamic text inside of a component, but I ...
0
votes
1
answer
121
views
Svelte styles are not applied to scope
I have a problem with adding styles in my Svelte components. I want to make sure that my styles are only applied within a specific component, but it doesn't work.
Here is an example of a component. ...
0
votes
1
answer
29
views
Having issues trying to add a new page/component to a angular system
Hi this is my first time doing maintence in a angular system and trying to build things on it and im trying to add a new page to the system to implement some bots on it that part its not that ...
1
vote
1
answer
30
views
I have a text appearing above all my layout file (laravel)
Please I have a text appearing on top of my page before my layout files independent of the one I choose. When I view page source in chrome, it shows like this
0 <!DOCTYPE html>
<html lang=&...
1
vote
2
answers
369
views
[Angular 18]Error: Could not find column with id "complete"
I am trying to follow through the book intitled "Pro Angular 16" and again, I am stuck early as the chapter 2 due to the following error, thrown by the TypeScript compiler embedded in ...
0
votes
1
answer
50
views
I am finding it difficult to access my files in the component folder for a React App I am building on Visual Studio code
Error Message:
The document “MainComponent.js” could not be opened. Your device couldn’t connect to the server. There may be a problem with the server or network.
Note:
I have internet connection and ...
1
vote
1
answer
32
views
React - convert a string to a component name - problem
Hi I work on some improvments and I came across some issue with changing string with name of my icon component to lower case which generate a error becuasue icons are not showed :/
Everything works ...
1
vote
2
answers
52
views
Issue with Hover Effect: Text Inside Box Darkens on Hover Despite Bright Text Color
Here's the properly formatted content for Stack Overflow:
Issue with Hover Effect: Text Inside Box Darkens on Hover Despite Bright Text Color
I'm working on a React component where I have a box that ...
0
votes
2
answers
43
views
How to make an animation happen everytime I click on a div that has the animation?
Im begginer on Angular and Im trying to develop a simply and little app which consists on a system of gym's with their corresponding managers, where each gym has a list of trainers. Up to now, if I ...
1
vote
2
answers
66
views
Angular Component gets looped
Im building an Angular application and my navbar gets looped.
My problem is, that if I am on /home, the navbar.component.html components gets looped and i see 2 among each other. How can I solve this
...
0
votes
1
answer
53
views
Angular, component to make a dynamic list with several fields inside the same form?
I want to make a form to create invoices.
And the users should be able to add and delete lines
Anyone know a good component or libary I can use to do this in Angular?
I tried to search but dosnt seem ...
1
vote
1
answer
44
views
give json retrieve in console which is not displayed in my Angular View
I want to display data that I retrieve in JSON format in my Angular V.17 html component. However, it is not displayed in my table even though I have them in the console. I don't understand.
Indeed, ...
0
votes
1
answer
45
views
Child component injecting undefined variable
I have a button in parent component in Vue.js, when I click the button I change a variables value and pass it to the child component. Now when I inject the variable inside my child component it gets ...