Questions tagged [angular-input]
49 questions
0
votes
3 answers
Not able to give space as a value in the Input property in Angular6
I am trying to create generic controls like this
dynamic-control.ts
import { Component, Input } from '@angular/core';
@Component({
selector: 'ngo-button',
template: ``,
styles:…

Lijin Durairaj
- 4,910
- 15
- 52
- 85
-1
votes
1 answer
localizedDate pipe in Angular

Kevin
- 9
- 2
-1
votes
1 answer
angular 13 cli complaining about component input on ng serve
Error: src/app/money_makers/shochat_guts/shochat_content_creator_components/active-stream-dashboard/shochatactivestreamview-shell/shochatactivestreamview-shell.component.html:14:40 - error NG8002: Can't bind to 'creatorcardimageurl' since it isn't a…

Christopher Jakob
- 453
- 3
- 21
-1
votes
3 answers
Angular 8 and assigning variables
In product.html I have the following code:
{{product.title}}
{{product.categories[0]}}
{{product.description}}
I get the product via input (with empty initial values), so product.ts looks like this: @Input() product:…
Mandy
- 107
- 1
- 2
- 9